1

我有我的 web.config 文件的这一部分。

<system.web>
  <authentication mode="Forms">
    <forms loginUrl="~/Login.aspx">
      <credentials passwordFormat="Clear">
        <user name="test@hotmail.com" password="12345" />
      </credentials>
    </forms>
  </authentication>
</system.web>

我已尝试加密此部分,但我得到对象未设置为对象错误的实例。这是我在加密类中调用的路径:system.web/authentication/forms/credentials

请问有什么解决办法吗?

谢谢。

4

1 回答 1

0

如果您使用的是 IIS,请确保您在 IIS 中的站点 ID 设置为 1(高级设置)。

于 2018-08-16T17:48:05.180 回答