Posted on 2007-04-21 18:33
玄铁剑 阅读(227)
评论(0) 编辑 收藏 引用 所属分类:
ASP.NET相关
<configuration>
<system.web>
<authentication mode="Forms">
<forms loginUrl="default.aspx" defaultUrl="default.aspx" protection="All"
name=".AspxAuth" path="/" timeout="30">
</forms>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
<caching>
<outputCacheSettings>
<outputCacheProfiles>
<add name="MyCache" duration="0" varyByParam="none"/>
</outputCacheProfiles>
</outputCacheSettings>
</caching>
</system.web>
<location path="App_Themes/SkinFile">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
</configuration>