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?