Html TextBoxFor readonly disabled Razor MVC5

Html.TextBoxFor readonly disabled Razor MVC5


Syntax for Readonly

 @Html.TextBoxFor(m => m.Email, new {@readonly = "readonly"})

Syntax for Disabled

@Html.TextBoxFor(m=> m.mobile, new {@disabled="true"})

Example for Html TextBoxFor readonly and Disabled

<div class="form-group">
    @Html.LabelFor(m => m.Email, new { @class = "col-md-2 control-label" })
    <div class="col-md-10">
        @Html.TextBoxFor(m => m.Email, new { @class = "form-control", @readonly = "true" })
    </div>
    <div class="col-md-10">
        @Html.TextBoxFor(m => m.mobile, new { @class = "form-control", @readonly = "true" })
    </div>
</div>


ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^