Answers:
作为htmlAttributes的一部分,例如
Html.BeginForm(
action, controller, FormMethod.Post, new { enctype="multipart/form-data"})
或者,您可以传递null
action和controller来获取与BeginForm()相同的默认目标,而无需任何参数:
Html.BeginForm(
null, null, FormMethod.Post, new { enctype="multipart/form-data"})
对于强类型版本,您还可以使用以下语法:
<% using (Html.BeginForm<SomeController>(x=> x.SomeAction(),
FormMethod.Post,
new { enctype = "multipart/form-data" }))
{ %>
我知道这很旧,但是如果您需要一遍又一遍地创建表格,则可以创建一个自定义扩展名:
public static MvcForm BeginMultipartForm(this HtmlHelper htmlHelper)
{
return htmlHelper.BeginForm(null, null, FormMethod.Post,
new Dictionary<string, object>() { { "enctype", "multipart/form-data" } });
}
用法就变成了
<% using(Html.BeginMultipartForm()) { %>