最新のWeb開発のチュートリアル
 

ASP.NET MVC - セキュリティ


私たちは、インターネットアプリケーションを構築する、ASP.NET MVCを学ぶために。

パートVIII:セキュリティの追加。


MVCアプリケーションセキュリティ

モデルフォルダは、アプリケーションモデルを表すクラスが含まれています。

ビジュアルWeb開発者は、自動的にアプリケーションの認証のためのモデルが含まれているAccountModels.csファイルを作成します。

AccountModelsは LogOnModel、ChangePasswordModel、およびRegisterModelが含まれています。

モデル


パスワードの変更モデル

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; }

}

ログオンモデル

public class LogOnModel
{

[Required]
[ Display(Name = "User name") ]
public string UserName { get; set; }

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

[ Display(Name = "Remember me?") ]
public bool RememberMe { get; set; }

}

登録モデル

public class RegisterModel
{

[Required]
[ Display(Name = "User name") ]
public string UserName { get; set; }

[Required]
[ DataType(DataType.EmailAddress) ]
[ Display(Name = "Email address") ]
public string Email { get; set; }

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

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

}