我试图从表单中发布一些信息,但它会不断向评论控制器发布空值而不是在页面上输入的内容....
@using (Html.BeginForm("SubmitComment", "Comment",FormMethod.Post))
{
<fieldset>
<legend>Submit a comment</legend>
<input id="comment" type="text" />
<button type="submit">Submit</button>
</fieldset>
}
有什么想法吗?
答案 0 :(得分:4)
将name="comment"
属性添加到输入中。