Если я сделаю это:
@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"?
Спасибо всем!
Mojo