Access HtmlHelpers from WebForm when using ASP.NET MVC

前端 未结 3 1529
鱼传尺愫
鱼传尺愫 2020-12-10 16:24

I am adding a WebForm from which I would like to resolve routes to URLs. For example, in MVC I would just use

return RedirectToAction(\"Action\", \"Control         


        
相关标签:
3条回答
  • 2020-12-10 16:53

    For those looking for an actual HtmlHelper or a cleaner way to use the urlHelper in a page:

    public static class PageCommon
    {
        public static System.Web.Mvc.UrlHelper GetUrlHelper(this System.Web.UI.Control c)
        {
            var helper = new System.Web.Mvc.UrlHelper(c.Page.Request.RequestContext);
            return helper;
        }
        class ViewDataBag : IViewDataContainer
        {
            ViewDataDictionary vdd = new ViewDataDictionary();
            public ViewDataDictionary ViewData
            {
                get
                {
                    return vdd;
                }
                set
                {
                    vdd = value;
                }
            }
        }
        public static System.Web.Mvc.HtmlHelper GetHtmlHelper(this System.Web.UI.Control c)
        {
    
            var v = new System.Web.Mvc.ViewContext();
            var helper = new System.Web.Mvc.HtmlHelper(v, new ViewDataBag());
            return helper;
        }
    }
    
    0 讨论(0)
  • 2020-12-10 16:54

    Try something like this in your Webform:

    <% var requestContext = new System.Web.Routing.RequestContext(
           new HttpContextWrapper(HttpContext.Current),
           new System.Web.Routing.RouteData());
       var urlHelper = new System.Web.Mvc.UrlHelper(requestContext); %>
    
    <%= urlHelper.RouteUrl(new { controller = "Controller", action = "Action" }) %>
    
    0 讨论(0)
  • 2020-12-10 17:07

    Revised version of the code above for PageCommon ... as it currently is it breaks.

    public static class MvcPages{
    public static UrlHelper GetUrlHelper(this System.Web.UI.Control c)
    {
        var helper = new System.Web.Mvc.UrlHelper(c.Page.Request.RequestContext);
        return helper;
    }
    
    public static HtmlHelper GetHtmlHelper(this System.Web.UI.Control c)
    {
        var httpContext = new HttpContextWrapper(HttpContext.Current);
        var controllerContext = new ControllerContext(httpContext, new RouteData(), new DummyController());
        var viewContext = new ViewContext(controllerContext, new WebFormView(controllerContext, "View"), new ViewDataDictionary(), new TempDataDictionary(), TextWriter.Null);
    
        var helper = new HtmlHelper(viewContext, new ViewDataBag());
        return helper;
    } 
    
    private class ViewDataBag : IViewDataContainer
    {
        ViewDataDictionary vdd = new ViewDataDictionary();
        public ViewDataDictionary ViewData
        {
            get
            {
                return vdd;
            }
            set
            {
                vdd = value;
            }
        }
    }
    
    private class DummyController : Controller
    {
    
    }
    
    }
    
    0 讨论(0)
提交回复
热议问题