我有一种表格,需要与一种方法和一个控制器一起使用。然后,在其中,我需要在不同的控制器中添加一个从完全不同的方法中提取的表单。
第一种形式是这样开始的:
using (Html.BeginForm("Create", "Post", FormMethod.Post, new { id = "post-box-form", enctype = "multipart/form-data" }))
第二种形式是这样开始的:
using (Html.BeginForm("AddGroupAttachment", "Group", new { id = Model.ID }, FormMethod.Post, new { enctype = "multipart/form-data" }))
我收到一个运行时异常,提示“无法对空引用执行运行时绑定”
我想知道我做错了什么?