2016-11-09 59 views

回答

2

你需要設置一個約束在模型中,使用:

[MaxLength(8)] 
public string Password { get; set; } 

然後呈現在Razor視圖:

@Html.PasswordFor(m => m.Password, new { maxlength = 8 }) 
相關問題