问题描述
如果在ASP。NET中用VS提供用户管理方法,如果用户访问了需要登录的页面就会自动跳转到登录页面(Login.aspx),有没有办法让它不跳到登录页面而跳到我定义的一个页面?
解决方案
解决方案二:
webconfig中配置
解决方案三:
如果用的是Forms验证方式,在web.config中进行配置,想跳到哪里都行实际上跳到登陆页面也是在这里配置的~
解决方案四:
<authenticationmode="Forms"><formsname=""loginUrl="沒有登錄要跳轉的頁面"timeout="300"path="/"protection="All"/></authentication><locationpath="需要登錄的網頁"><system.web><authorization><denyusers="?"/></authorization></system.web></location>
时间: 2024-10-24 07:53:04