<authentication mode="Forms">
<forms name="MyAppCookie" loginUrl="~/Registration.aspx" protection="All" timeout="30" path="/"/>
</authentication>
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
我在配置文件中添加了此代码,每当我加载页面时,母版页都不会出现。为什么以及如何解决这个问题?
我遇到的另一个问题是我去网站---&gt; ASP配置,没有WAT窗口打开!?!
答案 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>