I am using EditorforModel for Login Page, this my model
[Required]
public int UserId
{
get; set;
}
[Required]
[DataType(DataType.Password)]
public string Password
{
get; set;
}
[HiddenInput]
[ScaffoldColumn(false)]
public string ReturnUrl
{
get; set;
}
This is my view:
@model MVCIdentityLogin.Models.LogInModel
@{
ViewBag.Title = "LogIn";
}
<h2>LogIn</h2>
@Html.ValidationSummary(true)
@using(Html.BeginForm())
{
@Html.EditorForModel()
<p>
<button type="submit"> Log In</button>
</p>
}
my view as : View this view Userid input field has increase and decrease button. How to remove it? I check this html that is
just add this [DataType(DataType.Text)] attribute in Userid property like this