身份验证表单问题

发布于 2024-11-18 13:33:47 字数 659 浏览 0 评论 0原文

这是我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我也只是我 2024-11-25 13:33:47

将其添加到 web.config 的配置元素中:

<location path="header.png">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>

Add this in the web.config, in the configuration element:

<location path="header.png">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文