我的母版页不会出现

发布于 2024-11-09 05:29:22 字数 400 浏览 0 评论 0原文

    <authentication mode="Forms">
  <forms name="MyAppCookie" loginUrl="~/Registration.aspx" protection="All" timeout="30" path="/"/>
</authentication>
<authorization>
  <deny users="?"/>
  <allow users="*"/>
</authorization>

我在配置文件中添加了此代码,每当我加载页面时,母版页都不会出现。为什么以及如何解决这个问题?

我遇到的另一个问题是当我访问网站时---> ASP配置,,没有打开WAT窗口!?!

    <authentication mode="Forms">
  <forms name="MyAppCookie" loginUrl="~/Registration.aspx" protection="All" timeout="30" path="/"/>
</authentication>
<authorization>
  <deny users="?"/>
  <allow users="*"/>
</authorization>

I added this code in the configuration file and the master page wont appear whenever i load my pages. Why and how can i fix this?

Another issue that i experience is when i go to Website---> ASP configuration,, no WAT window opens!?!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

尐籹人 2024-11-16 05:29:22

我必须在我的一个网站的 web.config 中执行此操作:

   <location path="Scripts">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
  <location path="Images">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
    </system.web>
  </location>

I had to do this in the web.config for one of my sites:

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