This code:

<%: Html.TextBoxFor(model => model.DonationMessage) %>

Renders an input type=text tag, but I want a textarea. I tried this in my entity but it didn't make a difference:

[DataType(DataType.MultilineText)]
public string DonationMessage { get; set; }

Any idea?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted
<%: Html.TextAreaFor(model => model.DonationMessage) %>
link|improve this answer
Good heavens I feel dumb. Thank you. This is an example where learning purely by examples can fail you. I didn't see this in an example, and googling just didn't cut it. Had I read more documentation initially, I'd have known. I'm going to go read a book on this. BBL :) – Chris Jul 10 '10 at 20:12
Try something like this in Google "asp.net mvc html textarea". I'm just learning MVC as well, so I have to be resourceful. I did buy an MVC book on Kindle and it's been a big help as well. – Chase Florell Jul 10 '10 at 20:29
I was googling "textboxfor textarea"... making the wrong assumption was not helping me :) – Chris Jul 10 '10 at 20:34
feedback

if u want your DataType attribute to be at work you can use EdiotrFor method instead

<%: Html.EditorFor(model => model.DonationMessage) %>

this will take into account your DataType attribute plus there are dozen other things that you can do with Editor Templates

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.