在标准Web表单项目中使用ASP.NET MVC Html Helpers

时间:2010-01-15 17:05:01

标签: asp.net-mvc webforms html-helper

因此,例如在web表单aspx页面的代码中,我希望能够做到这样的事情

string textBoxHtml = Html.TextBox(“MyTextBox”);

这可能吗?

源代码是否可用于fork for webforms?

2 个答案:

答案 0 :(得分:6)

  1. 可能?是

  2. 整个MVC源位于: http://www.microsoft.com/downloads/details.aspx?FamilyID=53289097-73ce-43bf-b6a6-35e00103cb4b&displaylang=en

  3. 祝你好运!

    你会很快发现从MVC中提取代码就像只想要一个香蕉并让大猩猩拿着它。 ;)

答案 1 :(得分:2)

到目前为止,这对我有用。

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)
    {
        IViewDataContainer x;

        var v = new System.Web.Mvc.ViewContext();
        var helper = new System.Web.Mvc.HtmlHelper(v, new ViewDataBag());
        return helper;
    }