Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 13 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.

share|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
Just a note: if you have additional view locations, i.e., outside the normal ~/Views location, copy the ~/Views/Web.config to that location as well. – dave thieben Mar 18 at 16:14

Try to Clean and rebuild. It worked in my case.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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