我正在尝试使用ASP.NET MVC TextAreaFor方法创建一个带有默认值的textarea元素。
<%= Html.TextAreaFor(a => a.Description, new { Class = "gray", rows = "1", cols = "1", @onclick = "clearGray($(this));", Value = "Test sentence" })%>
盒子在那里,但我看不到我设置的值。它在检查时出现,但不在textarea中。我知道你应该像<textarea>Test sentence</textarea>
那样设置它,但我不知道如何用helper方法做到这一点。
我尝试使用内容属性,但这显然不起作用。任何解决方案?