从abc.aspx点击登录跳到Login页面后返回abc.aspx页面
login.aspx
在跳转的时候添加
Response.Redirect(Session["CurrentPageFullPath"] != null ? Session["CurrentPageFullPath"].ToString() : ResolveUrl("../common/index.aspx"));
abc.aspx
在abc.aspx.cs页面pageload里添加
Session["CurrentPageFullPath"] = Request.RawUrl.ToString();