ASP.NET Forms验证实现只有特定目录才要求登录

一、把Web根目录下的web.config中allow users的属性值设为“*”,意思是允许任意用户访问根目录下的所有页面。

<authentication mode="Forms">
    <forms loginUrl="Console/Default.aspx" name=".ASPXFORMSAUTH" defaultUrl="Console/Welcome.aspx">
    </forms>
</authentication>
<authorization>
    <allow users="*"/>
</authorization>

二、在admin下再建个web.config,这个文件的作用域只是Console目录下的所有页面

admin\Web.config文件全部代码:

<?xml version="1.0"?>
<configuration>
    <system.web>
        <authorization>
            <deny users="?"/>
        </authorization>
    </system.web>
</configuration>

 

物流配货网http://wlphw.com/ QQ在线:471226865点击这里给我发消息

你可能感兴趣的:(asp.net)