I have a large amount of text data that I want to display in something like a HTML.TextAreaFor(). I tried this using the readonly html property. However, the user can still select the date and click into the box. It's confusing for the user. Is there another control I can use or are ther other attrubutes of the HTML.TextAreaFor() that I can use to make it look un-edittable.
@Html.TextArea("SOWDescription", Model.SowDescription,
new { rows = 5, cols = 50, @class = "celltext2", @readonly="true" })
TextAreaFor