ASP.NET MVC 实现登录后返回上一页面操作
2021-05-22 20:30
标签:turn null pwd data 路径 sharp action 功能 方向 功能描述:当用户请求某页面时,若该页面需要登录后再进行操作,则将用户引导到登录页,登录成功后自动跳转回前一页面。 思路:转到登录页面时,在controller中记录返回路径ReUrl,然后通过ViewData将ReUrl传到登录页面的隐藏域中,登录请求时又将ReUrl传给post方法的Login,判断完登录是否成功后最后将这个ReUrl又传给前端,前端跳转成功。 返回路径的传递方向:Login→Login(View)→Login(post)→前端 ASP.NET MVC 实现登录后返回上一页面操作 标签:turn null pwd data 路径 sharp action 功能 方向 原文地址:http://www.cnblogs.com/flyingpigg/p/7688647.html//登录页视图代码
public ActionResult Login(string repath)
{
string reUrl="";
if(!String.IsNullOrEmpty(repath))
{
reUrl = repath;
}
else
{
string hostUrl="";
hostUrl = Request.UrlReferrer == null ? Request.Url.Host : Request.UrlReferrer.Host;
hostUrl = "http://" + hostUrl;
pathUrl = Request.UrlReferrer == null ? "/" : Request.UrlReferrer.PathAndQuery;
reUrl = hostUrl + pathUrl;
}
ViewData[ReUrl] = reUrl;
return View();
}//登录页的post方法
[post]
public ActionResult Login(string userName, string pwd, string repath)
{
....//该处判断登录是否成功
return Json(code = .., url = repath);
}
下一篇:导航,头部,CSS基础
文章标题:ASP.NET MVC 实现登录后返回上一页面操作
文章链接:http://soscw.com/index.php/essay/88019.html