I'm trying to make a TextArea have a default value.
<%: Html.TextAreaFor(Function(model) model.Description, 5, 10, New With {.Value = "Description: "})%>
This works properly in a TextBoxFor
but doesn't work in a TextAreaFor
Am I missing something very obvious?