asp.net登陆后总是被重新定位到登陆界面
我的asp.net网站没有用Session来判断很重定向(觉得麻烦),用的是forms认证,但是总是登陆正确也被重定位到登陆界面:Admin文件夹下web.config代...
我的asp.net网站没有用Session来判断很重定向(觉得麻烦),用的是forms认证,但是总是登陆正确也被重定位到登陆界面:Admin文件夹下web.config代码为:
<configuration>
<appSettings/>
<connectionStrings/>
<system.web>
<authorization>
<deny users ="*"/>
<allow users ="admin" verbs ="*"/>
</authorization>
</system.web>
</configuration>
Login.aspx的后台代码为:
protected void btnLogIn_Click(object sender, EventArgs e)
{
string UserName = txtUserName.Text.ToString().Trim();
string PassWord = txtPassWord.Text.ToString().Trim();
//验证码
AccountEntity user = new AccountEntity();
user.Username = UserName;
user.Password = PassWord;
user = new Account().Login(user );
if (user != null)
{
//是否有必要在此创建会话呢?
FormsAuthentication.RedirectFromLoginPage(UserName ,false );
Response.Redirect("Main.aspx");
}
else
{
this.ClientScript.RegisterStartupScript(this.GetType(), "Message", "",true);
return;
}
}
其它页面没有控制重定位页面。我知道问题很菜,但仍然希望友友们能够花那么一丁点时间帮助我一下,非常感谢O(∩_∩)O~! 展开
<configuration>
<appSettings/>
<connectionStrings/>
<system.web>
<authorization>
<deny users ="*"/>
<allow users ="admin" verbs ="*"/>
</authorization>
</system.web>
</configuration>
Login.aspx的后台代码为:
protected void btnLogIn_Click(object sender, EventArgs e)
{
string UserName = txtUserName.Text.ToString().Trim();
string PassWord = txtPassWord.Text.ToString().Trim();
//验证码
AccountEntity user = new AccountEntity();
user.Username = UserName;
user.Password = PassWord;
user = new Account().Login(user );
if (user != null)
{
//是否有必要在此创建会话呢?
FormsAuthentication.RedirectFromLoginPage(UserName ,false );
Response.Redirect("Main.aspx");
}
else
{
this.ClientScript.RegisterStartupScript(this.GetType(), "Message", "",true);
return;
}
}
其它页面没有控制重定位页面。我知道问题很菜,但仍然希望友友们能够花那么一丁点时间帮助我一下,非常感谢O(∩_∩)O~! 展开
2个回答
展开全部
web.config
<authentication mode="Forms">
<forms
loginUrl="login.aspx"
defaultUrl="Main.aspx"
path="/">
</forms>
</authentication>
if (user != null)
{
//是否有必要在此创建会话呢?随意,但应该可以通过User属性获得用户了
FormsAuthentication.RedirectFromLoginPage(UserName ,false );
//Response.Redirect("Main.aspx"); 这句注释了
}
<authentication mode="Forms">
<forms
loginUrl="login.aspx"
defaultUrl="Main.aspx"
path="/">
</forms>
</authentication>
if (user != null)
{
//是否有必要在此创建会话呢?随意,但应该可以通过User属性获得用户了
FormsAuthentication.RedirectFromLoginPage(UserName ,false );
//Response.Redirect("Main.aspx"); 这句注释了
}
追问
跟这个没关系,已经找到问题所在了,因为权限的问题。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询