Change Html control in EditorforModel MVC

81 Views Asked by At

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

1

There are 1 best solutions below

0
On

just add this [DataType(DataType.Text)] attribute in Userid property like this

[Required]
[DataType(DataType.Text)]
public int UserId
{
    get; set;
}