<authentication mode="Forms"> <forms loginUrl="Systems/NewsSystem/admin/Login.aspx" protection="All" timeout="30"name=".ASPXAUTH" path="/" requireSSL="false" slidingExpiration="true" defaultUrl="default.aspx" cookieless="UseDeviceProfile" enableCrossAppRedirects="false"/> </authentication> <authorization> <deny users="?"/> </authorization><!-- 以上设置是让这个程序都需要登录验证!我在用如下代码只能让某些目录不需要验证,而我下载的需要恰恰相反,我想只是某个目录如:Systems/NewsSystem/admin目录需要验证!怎么做呀?--> <location path="Systems/NewsSystem/admin"> <system.web> <authorization> <!--deny users="?"/--> <allow users="?"/> </authorization> </system.web> </location>
添加回答
举报
0/150
提交
取消