2015
09-29

MVC 安全

清華大佬耗費(fèi)三個(gè)月吐血整理的幾百G的資源,免費(fèi)分享!....>>>

ASP.NET MVC - 安全


為了學(xué)習(xí) ASP.NET MVC,我們將構(gòu)建一個(gè) Internet 應(yīng)用程序。

第 8 部分:添加安全。


MVC 應(yīng)用程序安全

Models 文件夾包含表示應(yīng)用程序模型的類。

Visual Web Developer 自動(dòng)創(chuàng)建 AccountModels.cs 文件,該文件包含用于應(yīng)用程序認(rèn)證的模型。

AccountModels 包含 LogOnModelChangePasswordModelRegisterModel

Model


Change Password 模型

public class ChangePasswordModel
{

[Required]
[DataType(DataType.Password)]
[Display(Name = "Current password")]
public string OldPassword { get; set; }

[Required]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "New password")]
public string NewPassword { get; set; }

[DataType(DataType.Password)]
[Display(Name = "Confirm new password")]
[Compare("NewPassword", ErrorMessage = "The new password and confirmation password do not match.")]
public string ConfirmPassword { get; set; }

}

掃碼二維碼 獲取免費(fèi)視頻學(xué)習(xí)資料

編程學(xué)習(xí)