创建了一个HtmlHelper扩展,但接收"不允许子操作执行重定向操作"例外

时间:2013-01-02 18:50:34

标签: exception asp.net-mvc-4 extension-methods

我创建了一个HtmlHelper扩展调用ActionButton,它将调出一个jQuery按钮,该按钮将调用一个动作而不是使用ActionLink。但是,我在以下行的扩展方法中收到一个异常(它只是一个代码示例,它会引发我看到的异常):

    MvcHtmlString str = helper.Action(actionName, controllerName, routeValues);

这是完整的方法,但使用UrlHelper创建操作URL(适用于我)。我还有using System.Web.Mvcusing System.Web.Mvc.Html

    public static HtmlString ActionButton(this HtmlHelper helper, string linkText, string actionName, string controllerName, object routeValues)
    {
        TagBuilder tag = new TagBuilder("a");
        UrlHelper urlHelper = new UrlHelper(helper.ViewContext.RequestContext);
        tag.MergeAttribute("href", urlHelper.Action(actionName, controllerName, routeValues));

        // the next line causes the exception, not really being used other than to 
        // raise the exception and illustrate the call I was making
        MvcHtmlString str = helper.Action(actionName, controllerName, routeValues);

        tag.MergeAttribute("rel", "external");
        tag.MergeAttribute("data-role", "button");
        tag.MergeAttribute("data-mini", "true");
        tag.MergeAttribute("data-inline", "true");
        tag.MergeAttribute("data-icon", "arrow-r");
        tag.MergeAttribute("data-iconpos", "right");
        tag.MergeAttribute("data-theme", "b");

        tag.SetInnerText(linkText);
        HtmlString html = new HtmlString(tag.ToString(TagRenderMode.Normal));
        return html;
    }

我想知道为什么调用helper.Action(...)会引发异常。

谢谢!

2 个答案:

答案 0 :(得分:0)

这是因为您正在呼叫helper.Action(即HtmlHelper)而不是urlHelper.Action

答案 1 :(得分:0)

HtmlHelper.Action()将调用您立即传递的操作方法,并返回其结果 那不是你想要的。

您需要UrlHelper.Action(),它会返回操作的网址。