MVC4制作網(wǎng)站教程第二章 用戶登陸2.2
一用戶
1.1用戶注冊(cè)
1.2用戶登陸
首先在Models里添加用戶登陸模型類(lèi)UserLogin,該類(lèi)只要用用戶名,密碼和驗(yàn)證碼三個(gè)字段。
/// <summary>
/// 用戶登陸模型
/// </summary>
public class UserLogin
{
/// <summary>
/// 用戶名
/// </summary>
[Display(Name = "用戶名", Description = "4-20個(gè)字符。")]
[Required(ErrorMessage = "×")]
[StringLength(20, MinimumLength = 4, ErrorMessage = "×")]
public string UserName { get; set; }
/// <summary>
/// 密碼
/// </summary>
[Display(Name = "密碼", Description = "6-20個(gè)字符。")]
[Required(ErrorMessage = "×")]
[StringLength(20, MinimumLength = 6, ErrorMessage = "×")]
[DataType(DataType.Password)]
public string Password { get; set; }
/// <summary>
/// 驗(yàn)證碼
/// </summary>
[Display(Name = "驗(yàn)證碼", Description = "請(qǐng)輸入圖片中的驗(yàn)證碼。")]
[Required(ErrorMessage = "×")]
[StringLength(6, MinimumLength = 6, ErrorMessage = "×")]
public string VerificationCode { get; set; }
}
在UserController里添加Login action; 代碼看如下:
public ActionResult Login()
{
return View();
}
[HttpPost]
public ActionResult Login(UserLogin login)
{
return View();
}
使用Cookie保存登陸賬號(hào),密碼等信息,修改public ActionResult Login(UserLogin login)。修改完成代碼如下:
[HttpPost]
public ActionResult Login(UserLogin login)
{
//驗(yàn)證驗(yàn)證碼
if (Session["VerificationCode"] == null || Session["VerificationCode"].ToString() == "")
{
Error _e = new Error { Title = "驗(yàn)證碼不存在", Details = "在用戶注冊(cè)時(shí),服務(wù)器端的驗(yàn)證碼為空,或向服務(wù)器提交的驗(yàn)證碼為空", Cause = "<li>你注冊(cè)時(shí)在注冊(cè)頁(yè)面停留的時(shí)間過(guò)久頁(yè)已經(jīng)超時(shí)</li><li>您繞開(kāi)客戶端驗(yàn)證向服務(wù)器提交數(shù)據(jù)</li>", Solution = "返回<a href='" + Url.Action("Register", "User") + "'>注冊(cè)</a>頁(yè)面,刷新后重新注冊(cè)" };
return RedirectToAction("Error", "Prompt", _e);
}
else if (Session["VerificationCode"].ToString() != login.VerificationCode.ToUpper())
{
ModelState.AddModelError("VerificationCode", "×");
return View();
}
//驗(yàn)證賬號(hào)密碼
userRsy = new UserRepository();
if (userRsy.Authentication(login.UserName, Common.Text.Sha256(login.Password)) == 0)
{
HttpCookie _cookie = new HttpCookie("User");
_cookie.Values.Add("UserName", login.UserName);
_cookie.Values.Add("Password", Common.Text.Sha256(login.Password));
Response.Cookies.Add(_cookie);
return RedirectToAction("Default","User");
}
else
{
ModelState.AddModelError("Message", "登陸失??!");
return View();
}
}
在public ActionResult Login() 上右鍵添加強(qiáng)類(lèi)型視圖

完成后代的Login.cshtml
@model CMS.Models.UserLogin
@{
ViewBag.Title = "用戶登陸";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<div class="banner">
<img src="~/Skins/Default/Images/banner.jpg" />
</div>
@using (Html.BeginForm())
{
@Html.ValidationSummary(true)
<div class="form">
<dl>
<dt>用戶登陸</dt>
<dd>
<div class="label">@Html.LabelFor(model => model.UserName):</div>
<div class="ctrl">@Html.EditorFor(model => model.UserName)
@Html.ValidationMessageFor(model => model.UserName)
@Html.DisplayDescriptionFor(model => model.UserName)
</div>
</dd>
<dd>
<div class="label">@Html.LabelFor(model => model.Password):</div>
<div class="ctrl">@Html.PasswordFor(model => model.Password)
@Html.ValidationMessageFor(model => model.Password)
@Html.DisplayDescriptionFor(model => model.Password)
</div>
</dd>
<dd>
<div class="label">驗(yàn)證碼:</div>
<div class="ctrl">
@Html.TextBoxFor(model => model.VerificationCode)
@Html.ValidationMessageFor(model => model.VerificationCode)
<img id="verificationcode" alt="" src="@Url.Action("VerificationCode", "User")" />
<a id="trydifferent" style="cursor: pointer">換一張</a>
</div>
</dd>
<dd>
<div class="label"></div>
<div class="ctrl">
<input type="submit" value="登陸" />@Html.ValidationMessage("Message");
</div>
</dd>
</dl>
<div class="clear"></div>
</div>
}
<script type="text/javascript">
$("#trydifferent").click(function () {
$("#verificationcode").attr("src", "/User/VerificationCode?" + new Date());
})
</script>
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}
瀏覽器中查看一下登陸頁(yè)面

點(diǎn)下登陸測(cè)試一下。OK登陸成功
驗(yàn)證用戶是否已經(jīng)登陸,這塊和權(quán)限驗(yàn)證一起從AuthorizeAttribute繼承個(gè)自定義驗(yàn)證類(lèi)
在項(xiàng)目里添加Extensions文件夾,添加一個(gè)類(lèi)UserAuthorizeAttribute 繼承自AuthorizeAttribute,重寫(xiě)AuthorizeCore方法用來(lái)實(shí)現(xiàn)用戶是否已經(jīng)登陸的驗(yàn)證,權(quán)限驗(yàn)證在寫(xiě)權(quán)限功能時(shí)在補(bǔ)充
using Ninesky.Repository;
namespace System.Web.Mvc
{
/// <summary>
/// 用戶權(quán)限驗(yàn)證
/// </summary>
public class UserAuthorizeAttribute :AuthorizeAttribute
{
/// <summary>
/// 核心【驗(yàn)證用戶是否登陸】
/// </summary>
/// <param name="httpContext"></param>
/// <returns></returns>
protected override bool AuthorizeCore(HttpContextBase httpContext)
{
//檢查Cookies["User"]是否存在
if (httpContext.Request.Cookies["User"] == null) return false;
//驗(yàn)證用戶名密碼是否正確
HttpCookie _cookie = httpContext.Request.Cookies["User"];
string _userName = _cookie["UserName"];
string _password = _cookie["Password"];
httpContext.Response.Write("用戶名:"+_userName);
if (_userName == "" || _password == "") return false;
UserRepository _userRsy = new UserRepository();
if (_userRsy.Authentication(_userName, _password) == 0) return true;
else return false;
}
}
}
以后只要在需要登陸后才能操作的Action或Controller上加[UserAuthorize]就可實(shí)現(xiàn)驗(yàn)證是否已經(jīng)登錄了。
退出功能,在UserController添加Logout Action
/// <summary>
/// 退出系統(tǒng)
/// </summary>
/// <returns></returns>
public ActionResult Logout()
{
if (Request.Cookies["User"] != null)
{
HttpCookie _cookie = Request.Cookies["User"];
_cookie.Expires = DateTime.Now.AddHours(-1);
Response.Cookies.Add(_cookie);
}
Notice _n = new Notice { Title = "成功退出", Details = "您已經(jīng)成功退出!", DwellTime = 5, NavigationName="網(wǎng)站首頁(yè)", NavigationUrl = Url.Action("Index", "Home") };
return RedirectToAction("Notice", "Prompt", _n);
}
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- ASP.NET MVC5網(wǎng)站開(kāi)發(fā)管理列表、回復(fù)及刪除(十三)
- ASP.NET MVC5網(wǎng)站開(kāi)發(fā)我的咨詢列表及添加咨詢(十二)
- ASP.NET MVC5網(wǎng)站開(kāi)發(fā)修改及刪除文章(十)
- ASP.NET MVC5網(wǎng)站開(kāi)發(fā)添加文章(八)
- ASP.NET MVC5網(wǎng)站開(kāi)發(fā)文章管理架構(gòu)(七)
- ASP.NET MVC5網(wǎng)站開(kāi)發(fā)用戶修改資料和密碼(六)
- ASP.NET?MVC5網(wǎng)站開(kāi)發(fā)用戶登錄、注銷(xiāo)(五)
- ASP.NET?MVC5?網(wǎng)站開(kāi)發(fā)框架模型、數(shù)據(jù)存儲(chǔ)、業(yè)務(wù)邏輯(三)
- ASP.NET MVC5網(wǎng)站開(kāi)發(fā)項(xiàng)目框架(二)
- ASP.NET MVC5網(wǎng)站開(kāi)發(fā)概述(一)
相關(guān)文章
asp.net中讓Repeater和GridView支持DataPager分頁(yè)
.NET 3.5中的DataPager碉堡了,可惜只支持ListView。傳統(tǒng)的GridView和Repeater都無(wú)法直接使用DataPager分頁(yè)。但我們?nèi)绻约痈脑?,就可以讓Repeater和GridView支持DataPager分頁(yè)2012-02-02
.Net Core實(shí)現(xiàn)JWT授權(quán)認(rèn)證
這篇文章介紹了.Net Core實(shí)現(xiàn)JWT授權(quán)認(rèn)證的方法,對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2022-01-01
ASP.NET Core程序發(fā)布到Linux生產(chǎn)環(huán)境詳解
這篇文章主要為大家詳細(xì)介紹了ASP.NET Core程序發(fā)布到Linux生產(chǎn)環(huán)境,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-04-04
asp.net下數(shù)據(jù)庫(kù)操作優(yōu)化一例
數(shù)據(jù)庫(kù)升級(jí),需要對(duì)幾個(gè)表進(jìn)行一些數(shù)據(jù)轉(zhuǎn)換,具體是這樣:針對(duì)每一個(gè) Item,從 orders 表里查出 Shop_Id,并把此 Id 賦值給 items 和 skus 中的 Shop_Id。2010-11-11
asp.net Context.Handler 頁(yè)面間傳值方法
很有用的頁(yè)面間傳值方法(Context.Handler),使用說(shuō)明2008-08-08
.net 操作xml的簡(jiǎn)單方法及說(shuō)明
.net 操作xml的簡(jiǎn)單方法及說(shuō)明,需要的朋友可以參考一下2013-06-06
基于.net standard 的動(dòng)態(tài)編譯實(shí)現(xiàn)代碼
這篇文章主要介紹了基于.net standard 的動(dòng)態(tài)編譯實(shí)現(xiàn)代碼,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2018-07-07
asp.net省市三級(jí)聯(lián)動(dòng)的DropDownList+Ajax的三種框架(aspnet/Jquery/ExtJs)示例
前段時(shí)間需要作一個(gè)的Web前端應(yīng)用,需要用多個(gè)框架,一個(gè)典型的應(yīng)用場(chǎng)景是省市三級(jí)聯(lián)動(dòng),基于此應(yīng)用,特將三種主要的ajax框架略作整理,方便有需要的朋友查閱。2010-06-06

