我一直在这里测试示例代码http://mywsat.codeplex.com/
在他们的示例中,他们使用不同的按钮使用单独的链接登录admin
页面或members
页面
但是,我正在尝试使用指向着陆页的单个链接,并在用户使用代码隐藏重定向到相关页面后。登录页面需要登录,但所有角色都可以在规则中查看此页面。
landingpage.aspx:
protected void Page_Load(object sender, EventArgs e)
{
string redirectPath;
string pagePath = Request.AppRelativeCurrentExecutionFilePath;
if (Page.User.IsInRole("Administrator"))
{
//Admin
redirectPath = "~/admin/Default.aspx";
if (redirectPath != pagePath)
{
Response.Redirect(redirectPath);
}
}
else if (Page.User.IsInRole("Member"))
{
//Members
redirectPath = "~/members/Default.aspx";
if (redirectPath != pagePath)
{
Response.Redirect(redirectPath);
}
}
else if (Page.User.IsInRole("Trial"))
{
//Trial
redirectPath = "~/trial/Default.aspx";
if (redirectPath != pagePath)
{
Response.Redirect(redirectPath);
}
}
else
{
//Non member
redirectPath = "~/Default.aspx";
if (redirectPath != pagePath)
{
Response.Redirect(redirectPath);
}
}
}
问题是Page_Load事件会立即触发,然后在事件触发后启动login-with-captcha.ascx
。
然后我将代码移到登录表单login-with-captcha.ascx.cs
以在e.Authenticated = true;
后重定向,但它只是在无限循环中重定向回login-with-captcha.ascx
登录与 - captcha.ascx.cs:
// Next, determine if the user's username/password are valid
if (Membership.ValidateUser(loginUsername, loginPassword))
{
e.Authenticated = true;
//tried redirecting from here based on role!
}
else
//............
如何在验证用户后从着陆页重定向?我怀疑它可能与回发有关但需要一些帮助
答案 0 :(得分:1)
您可以尝试在Page_Load中添加以下内容作为第一行,看看它是否有帮助?这可能会阻止无限循环问题,如果它是由触发回发事件的事情引起的,例如按钮点击。
if (IsPostBack) return;