PartialView动态BeginForm参数

时间:2010-01-29 04:24:59

标签: asp.net-mvc partial-views

如果我有下面的PartialView

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Models.Photo>" %>

<% using (Html.BeginForm("MyAction", "MyController", FormMethod.Post, new { enctype = "multipart/form-data" }))   { %>

    <%= Html.EditorFor( c => c.Caption ) %>

    <div class="editField">
        <label for="file" class="label">Select photo:</label>
        <input type="file" id="file" name="file" class="field" style="width:300px;"/>
    </div>

  <input type="submit" value="Add photo"/>

<%} %>

如您所见,Action和Controller是硬编码的。有没有办法让它们变得动态?

我的目标是让这个局部视图足够通用,以便我可以在很多地方使用它并让它提交给它所在的Action和Controller。

我知道我可以使用ViewData,但实际上并不希望将VormViewModel传递给视图并使用模型属性。

有没有比我上面列出的两个更好的方式?

1 个答案:

答案 0 :(得分:1)

我检查了MVC的源代码并深入了解System.Web.Mvc - &gt; Mvc - &gt; Html - &gt; FormExtensions所以我发现你可以编写一些代码:

public static class FormHelpers
{
    public static MvcForm BeginFormImage(this HtmlHelper htmlHelper,  IDictionary<string, object> htmlAttributes)
    {
        string formAction = htmlHelper.ViewContext.HttpContext.Request.RawUrl;
        return FormHelper(htmlHelper, formAction, FormMethod.Post, htmlAttributes);
    }

    public static MvcForm FormHelper(this HtmlHelper htmlHelper, string formAction, FormMethod method, IDictionary<string, object> htmlAttributes)
    {
        TagBuilder tagBuilder = new TagBuilder("form");
        tagBuilder.MergeAttributes(htmlAttributes);
        // action is implicitly generated, so htmlAttributes take precedence.
        tagBuilder.MergeAttribute("action", formAction);
        tagBuilder.MergeAttribute("enctype", "multipart/form-data");
        // method is an explicit parameter, so it takes precedence over the htmlAttributes.
        tagBuilder.MergeAttribute("method", HtmlHelper.GetFormMethodString(method), true);
        htmlHelper.ViewContext.Writer.Write(tagBuilder.ToString(TagRenderMode.StartTag));
        MvcForm theForm = new MvcForm(htmlHelper.ViewContext);

        if (htmlHelper.ViewContext.ClientValidationEnabled)
        {
            htmlHelper.ViewContext.FormContext.FormId = tagBuilder.Attributes["id"];
        }

        return theForm;
    }
}

我不确定这是你真正想要的,但我相信如果你改变这条线路可以满足你的需要,你就可以得到它。 希望这会有所帮助。