tags:

views:

102

answers:

3

My solution (which is a copy of another one) is reporting an error because it cannot find HttpRequestBase.

My code has references to system.web and system.web.mvc.

Does this class still exist in MVC 1.0?

+4  A: 

I believe this class was part of the System.Web.Abstractions dll. Try adding a reference to that.

LorenVS
A: 

System.Web.Abstractions, you'll also need a reference to System.Web.Routing in an MVC project

sighohwell
A: 

You can get the full source code of asp.net MVC from http://www.codeplex.com/aspnet FWIW

Chance