Razor:Ho doI设置TextAreaFor name?

时间:2011-02-01 17:36:09

标签: textarea razor

如果我这样做:

@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”?

全部谢谢!

1 个答案:

答案 0 :(得分:1)

没关系 - 发现我应该使用@ Html.TextArea。 :)