です:私はフィールドがあることを伝えるにはどうすればよいASP.NET MVC:Html.EditorForと複数行のテキストボックスこれは私のコード
<div class="editor-label">
<label for="Comments_0__Comment">Comment</label>
</div>
<div class="editor-field">
<input class="text-box single-line" data-val="true" data-val-required="The Comment field is required." id="Comments_0__Comment" name="Comments[0].Comment" type="text" value="" />
<span class="field-validation-valid" data-valmsg-for="Comments[0].Comment" data-valmsg-replace="true"></span>
</div>
:
<div class="editor-label">
@Html.LabelFor(model => model.Comments[0].Comment)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Comments[0].Comment)
@Html.ValidationMessageFor(model => model.Comments[0].Comment)
</div>
これは、それが生成するものです単一行のテキストボックスの代わりに5行のテキストボックスにする必要がありますか?
[ASP.NET MVC3 - textarea with @ Html.EditorFor](http://stackoverflow.com/questions/4927003/asp-net-mvc3-textarea-with-html-editorfor) –