表格发布空白

时间:2014-05-15 11:39:26

标签: c# asp.net-mvc

我试图从表单中发布一些信息,但它会不断向评论控制器发布空值而不是在页面上输入的内容....

@using (Html.BeginForm("SubmitComment", "Comment",FormMethod.Post))
{
     <fieldset>
        <legend>Submit a comment</legend>
        <input id="comment" type="text" />

        <button type="submit">Submit</button>

    </fieldset>
}

有什么想法吗?

1 个答案:

答案 0 :(得分:4)

name="comment"属性添加到输入中。