up vote 12 down vote favorite
2
share [g+] share [fb]

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:

'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?)

My markup (in the .aspx View Content Page) is:

<% Html.RenderPartial("Controls/UserForm", ViewData); %>

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?

link|improve this question

They sure love moving stuff around :) – leppie Oct 17 '08 at 9:17
Yeah, I think they get some kind of sick pleasure from it... – tags2k Oct 17 '08 at 9:19
Great question - we're upgrading to 1.0 from Preview 5 today and this really helped! – Jarrod Dixon Apr 9 '09 at 22:06
Well, as annoying as it is, better they get it right during the Beta than have to change it after the RTM. – Andrew Nurse May 26 '09 at 15:56
feedback

3 Answers

up vote 9 down vote accepted

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:

<namespaces>
 <add namespace="System.Web.Mvc"/>
 <add namespace="System.Web.Mvc.Ajax"/>
 <add namespace="System.Web.Mvc.Html"/>
 <add namespace="System.Web.Routing"/>
 <add namespace="System.Linq"/>
 <add namespace="System.Collections.Generic"/>
</namespaces>
link|improve this answer
feedback

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:

<add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

After this change, all of my old HtmlHelper methods magically came back!

link|improve this answer
feedback

In addition to adding the assembly reference I also had to add the line

 <add namespace="System.Web.Mvc.Html"/>"

to the pages/namespaces section in web.config file.

link|improve this answer
Thanks, This is the thing that solved my error. – Sachin Chavan Aug 29 '09 at 8:39
In addition to this you need to ensure the compiler is set to 3.5: stackoverflow.com/questions/944015/… – rjarmstrong Dec 2 '09 at 11:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.