I am trying to use ViewBag in my application, I have all of the recent dlls, the latest version of MVC 3, but yet I am still getting the Error: "The name 'ViewBag' does not exist in the current context".

I have even uninstalled and then re-installed MVC 3 and yet there is no change.

Also, I do not believe that the dll's are showing up in the GAC.

Any one know what my problem might be? Or how to add the dll's to the GAC? I'm not sure what the problem is here..

link|improve this question

80% accept rate
feedback

1 Answer

up vote 7 down vote accepted

You need to add the MVC-specific Razor configuration to your web.config. See here: Razor HtmlHelper Extensions Not Found

Use the MVC 3 upgrade tool to automatically ensure you have the right config values.

link|improve this answer
Thanks! That link helped! I guess this is all a result of making a site that was on the MVC 3 Beta, and then when you get the latest version, the web configs do not get changed. Thanks! – efleming Feb 10 '11 at 18:15
I've updated my post with this as well as a related fix: stevesmithblog.com/blog/… – ssmith Feb 10 '11 at 18:18
You can use the upgrade tool (see updated answer) to ensure your config is correct. – marcind Feb 10 '11 at 19:54
feedback

Your Answer

 
or
required, but never shown

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