我有我的 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
请问有什么解决办法吗?
谢谢。