System.Web.Mvc.Html.MvcForm Razor给我看了一个HTML

时间:2015-05-27 20:35:24

标签: html asp.net-mvc post razor html.beginform

我在视图中有一个表单。

@if (Request.IsAuthenticated) {
     @(Html.BeginForm("LeaveComment", "Publication")){
          <input type="text" name="pub" style="display: none" value=@publication.PublicationID>
          <input type="text" name="mail"  style="display: none" value=@Context.User.Identity.Name>
          <textarea id="comment" name="comment"></textarea>
          <button type="submit">Submit</button>
     }
}

视图显示我&#34; System.Web.Mvc.Html.MvcForm&#34;:

控制器的方法是:

 public ActionResult LeaveComment(int pub, string mail, string comment)

我该如何解决?

修改 如果我使用@using这项工作很好,但这会崩溃另一个表格。另一个表格的代码是下一个:

@if(Request.IsAuthenticated)             {

            using(Html.BeginForm("LeaveComment", "Publication", FormMethod.Post,
                   new { publicationID = publication.PublicationID, mail = Context.User.Identity.Name }))
            {
                <textarea id="comment" name="comment" style="width: 828px; margin-left: 18px;"></textarea>
                <button type="submit" name="action:LeaveComment" value="LeaveComment"  class="btn btn-default pull-right">
                    <strong>Submit</strong>
                </button>
            }
        }
        else
        {
            <form action="#">
                <textarea id="comment" name="" style="width: 828px; margin-left: 18px;"></textarea>
                <button type="button" href="#login" data-toggle="modal" data-target="#login-modal" class="btn btn-default pull-right" style="margin-right: 15px;">
                    Submit
                </button>
            </form>
        }

更新 我解决了这个问题,在离开评论中添加使用,我删除了这篇文章的FormMethod.Post字段。

1 个答案:

答案 0 :(得分:3)

您需要使用using (Html.BeginForm(...)),因为MvcForm.Dispose()会打印实际的结尾表单标记。

您的代码@(Html.BeginForm)将调用MvcForm.ToString(),这将只打印类型名称。