I have the following line in my view:
<%= Html.TextBoxFor(m => m.Description)%>
You can do also like this
@Html.TextBoxFor(model => model.Email, new Dictionary() { { "readonly", "true" }, { "style", "width:250px;" } })