如果我这样做:
@Html.TextAreaFor(Function(m) m.html, New With {.id = "myTextArea", .name = "myTextArea", .style = "width: 100%; height: 100%"})
我得到了这个结果:
<textarea cols="20" id="myTextArea" name="html" rows="2" style="width: 100%; height: 100%"></textarea>
但是如何将“name”设置为“myTextAre”而不是“html”?
全部谢谢!
魔
答案 0 :(得分:1)
没关系 - 发现我应该使用@ Html.TextArea。 :)