身份验证表单问题
这是我的 web.config 中的一部分:
<authentication mode="Forms">
<forms name=".MyCookie" loginUrl="~/Registration.aspx" protection="All" timeout="30" path="/">
<credentials passwordFormat="MD5">
<user name="user" password="ca064d0730abfeb09e383a0e82e65f73"/>
</credentials>
</forms>
</authentication>
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
这是 Registration.aspx 中的部分..当用户匿名时,表单不会显示:
<asp:Image ID="Image1" runat="server" ImageUrl="~/header.png" />
我不明白为什么..但图片从未显示:(
This is a section from my web.config:
<authentication mode="Forms">
<forms name=".MyCookie" loginUrl="~/Registration.aspx" protection="All" timeout="30" path="/">
<credentials passwordFormat="MD5">
<user name="user" password="ca064d0730abfeb09e383a0e82e65f73"/>
</credentials>
</forms>
</authentication>
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
This is the section in Registration.aspx..that the form doesnt show when the user is anonymous:
<asp:Image ID="Image1" runat="server" ImageUrl="~/header.png" />
I dont understand why..But the picture is never shown :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其添加到 web.config 的配置元素中:
Add this in the web.config, in the configuration element: