AI智能
改变未来

ASP.NEW用authentication节配置安全身份验证模式

在Web.config页面中填写代码如下图:

在credentials配置节中添加两个登录用户,且不使用加密方式

[code]<authentication mode=\"Forms\"><forms defaultUrl=\"MemberList.aspx\" loginUrl=\"Login.aspx\"><credentials passwordFormat=\"Clear\"><user name=\"admin\" password=\"123\"/><user name=\"guest\" password=\"456\"/></credentials></forms></authentication>

defaulturl=要跳转的页面,loginurl=登录页面

然后在location 配置拒绝匿名用户和guest用户访问,允许admin用户

[code]<location path=\"Admin/MemberList.aspx\"> //path=要跳转的页面<system.web><authorization><deny users=\"guest,?\"/><allow users=\"admin\"/></authorization></system.web></location>

 

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » ASP.NEW用authentication节配置安全身份验证模式