我正在使用.Net memebership系统,现在我已经没有任何真正的麻烦了。 我现在有一个覆盖,用户可以在其中创建个人资料。创建配置文件时,我只想重定向到同一页面,而不是默认页面或返回URL - 这是不存在的。
我试图停止FormsAuthentication.RedirectFromLoginPage响应,但没有效果:
FormsAuthentication.RedirectFromLoginPage(username, false);
// End the redirect so it doesnt redirect to default url (front-page)
Response.End();
Response.Redirect(Request.RawUrl);
有没有人知道如何解决这个问题?
答案 0 :(得分:1)
请改用:
FormsAuthentication.SetAuthCookie(username, false);
Response.Redirect(Request.RawUrl);