Access HtmlHelpers from WebForm when using ASP.NET

2020-02-06 01:53发布

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", "Controller");

So, if you have a way of getting to that same URL from a WebForm in the same application, it would be appreciated.

3条回答
ゆ 、 Hurt°
2楼-- · 2020-02-06 02:53

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
{

}

}
查看更多
你好瞎i
3楼-- · 2020-02-06 02:56

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" }) %>
查看更多
Fickle 薄情
4楼-- · 2020-02-06 02:56

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;
    }
}
查看更多
登录 后发表回答