ASP.NET web登入后跳转到指定页面
程序员文章站
2022-06-02 11:49:11
...
ASP.NET web登入后跳转到指定页面
要进入网站指定页面链接,但要先登录,先要实现登录后直接跳到之前指定的链接页面
首先在指定页面加入判断,若没有登录,跳到登录页面并附加当前页面链接作为url:
protected void Page_Load(object sender, EventArgs e)
{
string returnUrl = Request.Url.AbsoluteUri;
if (Session["USER"] == null)
{
Response.Redirect("../SafeLogin2.aspx?url=" + Server.UrlEncode(returnUrl));
}
else
{
//登录后页面内容
}
}
然后在登录界面接收传过来的url并解码,在登录成功后的代码中加入判断:
var str = window.location.href;
if (str.includes("url=")) {
var returnUrl = str.split('url=')[1];
window.location.href = unescape(returnUrl);
}
else {
window.location.href = "Index.aspx";
}
注:js中可以用escape和unescape对url地址编码和解码