I’ve got a regular ASP.NET web form page and am pasting in a <%= Html.Partial(...) %> that I took from an MVC view page.
What do I need to do to this web forms .aspx to get the Html.Partial to work? I’ve put this at the top of my web forms .aspx page:
<%@ Import Namespace="System.Web.Mvc" %>
<%@ Import Namespace="System.Web.Mvc.Html" %>
But I’m still getting error:
Compiler Error Message: CS0103: The name 'Html' does not exist in the current context
You are getting the error because
Htmlis a property of theSystem.Web.Mvc.ViewPageclass and is an instance of theHtmlHelperclass. TheSystem.Web.Mvc.ViewPageclass is the class that your default ASP.NET MVC views inherit from, so you have access to theHtmlproperty in your views.I don’t know how you would go about creating an
HtmlHelperinstance in your webforms page but I would imagine that you’d have a hard time because it’s constructor takes aViewContextand anIViewDataContainer.