0

如何使用 mvc 辅助方法创建 ajax.beginform?

例如:

@helper AjaxForm(string action, string controller, object routevalues, AjaxOptions options, params MvcHtmlString[] fields)
{
    // DOES NOT WORK
    @using(Ajax.BeginForm(action, controller, routevalues, options))
    {
        foreach (var field in inputfields)
        {
            @field
        }  
    }
}

我想在我的视图中的任何地方使用这个字段

@helper AjaxForm("Action", "Controller", new {id = "1"}, new AjaxOptions())
4

1 回答 1

0

Like this

@using (Html.BeginForm())
{


}
于 2013-11-29T09:18:24.717 回答