您现在的位置是:网站首页> 编程资料编程资料
.net MVC使用Session验证用户登录(4)_实用技巧_
2023-05-24
317人已围观
简介 .net MVC使用Session验证用户登录(4)_实用技巧_
用最简单的Session方式记录用户登录状态
1.添加DefaultController控制器,重写OnActionExecuting方法,每次访问控制器前触发
public class DefaultController : Controller { protected override void OnActionExecuting(ActionExecutingContext filterContext) { base.OnActionExecuting(filterContext); var controllerName = filterContext.ActionDescriptor.ControllerDescriptor.ControllerName; var userName = Session["UserName"] as String; if (String.IsNullOrEmpty(userName)) { //重定向至登录页面 filterContext.Result = RedirectToAction("Index", "Login", new { url = Request.RawUrl}); return; } } } 2.登录控制器
public class LoginController : Controller { // GET: Login public ActionResult Index(string ReturnUrl) { if (Session["UserName"] != null) { return RedirectToAction("Index", "Home"); } ViewBag.Url = ReturnUrl; return View(); } [HttpPost] public ActionResult Index(string name, string password, string returnUrl) { /* 添加验证用户名密码代码 */ Session["UserName"] = name; if (Url.IsLocalUrl(returnUrl) && returnUrl.Length > 1 && returnUrl.StartsWith("/") && !returnUrl.StartsWith("//") && !returnUrl.StartsWith("/\\")) { return Redirect(returnUrl); } else { return RedirectToAction("Index", "Home"); } } // POST: /Account/LogOff [HttpPost] public ActionResult LogOff() { Session["UserName"] = null; return RedirectToAction("Index", "Home"); } } 3.需要验证的控制器继承DefaultController
public class HomeController : DefaultController { public ActionResult Index() { return View(); } } 这种方式适合比较小的项目
优点:简单,易开发
缺点:无法记录登录状态,而且Session方式容易丢失
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
您可能感兴趣的文章:
相关内容
- Visual Studio 2017使用淘宝镜像的方法_实用技巧_
- Visual Studio卸载不完全问题的解决方法_实用技巧_
- .Net Core简单使用Mvc内置的Ioc(续)_实用技巧_
- .NET Core简单读取json配置文件_实用技巧_
- .Net Core简单使用Mvc内置的Ioc_实用技巧_
- .net core下配置访问数据库操作_实用技巧_
- ASP.NET MVC错误处理的对应解决方法_实用技巧_
- .net core下对于附件上传下载的实现示例_实用技巧_
- Asp.net core利用IIS在windows上进行托管步骤详解_实用技巧_
- Debian 8或Debian 9(64 位)安装 .NET Core_实用技巧_
