잘 되던 프로젝트가 갑자기 아래 그림과 같이 에러 메시지가 발생하면서 실행이 되지 않는 경우가 발생해서,
구글링해서 찾아본 결과, 아래 링크의 자료가 도움이 되었다. 역시 스택오버플로^^
http://stackoverflow.com/questions/14824228/cs0234-mvc-does-not-exist-in-the-system-web-namespace
컴파일러 오류 메시지: CS0234: 'System.Web.Mvc' 네임스페이스에 'Ajax' 형식 또는 네임스페이스 이름이 없습니다. 어셈블리 참조가 있는지 확인하십시오.
I had the same problem and I had solved it with:
1.Right click to solution and click 'Clean Solution'
2.Click 'References' folder in solution explorer and select the problem reference (in your case it seems System.Web.Mvc) and then right click and click 'Properties'.
3.In the properties window, make sure that the 'Copy Local' property is set to 'True'
This worked for me. Hope it works for someone else