ASP.NET MVC Beta 1 - where is Html.RenderPartial? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T14:31:19Z http://stackoverflow.com/feeds/question/211493 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/211493/asp-net-mvc-beta-1-where-is-html-renderpartial 9 ASP.NET MVC Beta 1 - where is Html.RenderPartial? tags2k 2008-10-17T08:58:58Z 2009-05-26T14:21:08Z <p>I'm just in the process of upgrading my Preview 5 application to Beta 1, and I'm nearly there save for this one error when trying to render a control:</p> <blockquote> <p>'System.Web.Mvc.HtmlHelper' does not contain a definition for 'RenderPartial' and no extension method 'RenderPartial' accepting a first argument of type 'System.Web.Mvc.HtmlHelper' could be found (are you missing a using directive or an assembly reference?)</p> </blockquote> <p>My markup (in the .aspx View Content Page) is:</p> <pre><code>&lt;% Html.RenderPartial("Controls/UserForm", ViewData); %&gt; </code></pre> <p>I've tried using Microsoft.Web.Mvc but to no avail. Does anyone know where Html.RenderPartial has gone, or what alternative I could use?</p> http://stackoverflow.com/questions/211493/asp-net-mvc-beta-1-where-is-html-renderpartial/211524#211524 9 Answer by tags2k for ASP.NET MVC Beta 1 - where is Html.RenderPartial? tags2k 2008-10-17T09:16:23Z 2008-10-17T09:16:23Z <p>Now fixed - the conflict was a difference in Web.config requirements between Preview 5 and Beta 1. The following needs to be added into the system.web compilation assemblies node:</p> <pre><code>&lt;add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; </code></pre> <p>After this change, all of my old HtmlHelper methods magically came back!</p> http://stackoverflow.com/questions/211493/asp-net-mvc-beta-1-where-is-html-renderpartial/212829#212829 2 Answer by aogan for ASP.NET MVC Beta 1 - where is Html.RenderPartial? aogan 2008-10-17T16:19:12Z 2009-05-26T14:21:08Z <p>In addition to adding the assembly reference I also had to add the line</p> <pre><code> &lt;add namespace="System.Web.Mvc.Html"/&gt;" </code></pre> <p>to the pages/namespaces section in web.config file.</p> http://stackoverflow.com/questions/211493/asp-net-mvc-beta-1-where-is-html-renderpartial/216867#216867 9 Answer by spinodal for ASP.NET MVC Beta 1 - where is Html.RenderPartial? spinodal 2008-10-19T19:47:59Z 2008-10-19T19:47:59Z <p>And also don't forget to add namespaces like below to the web config, I think preview 5 default web.config does not have System.Web.Mvc.Html in it:</p> <pre><code>&lt;namespaces&gt; &lt;add namespace="System.Web.Mvc"/&gt; &lt;add namespace="System.Web.Mvc.Ajax"/&gt; &lt;add namespace="System.Web.Mvc.Html"/&gt; &lt;add namespace="System.Web.Routing"/&gt; &lt;add namespace="System.Linq"/&gt; &lt;add namespace="System.Collections.Generic"/&gt; &lt;/namespaces&gt; </code></pre>