我的母版页不会出现

时间:2011-05-21 12:52:43

标签: asp.net web-config master-pages

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

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

我遇到的另一个问题是我去网站---&gt; ASP配置,没有WAT窗口打开!?!

1 个答案:

答案 0 :(得分:1)

我必须在我的某个网站的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>