Where is the HttpRequestBase?

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

There are links to system.weband in my code system.web.mvc.

Does this class still exist in MVC 1.0?

+3
source share
3 answers

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

+5
source

System.Web.Abstractions you will also need a link to System.Web.Routing in your MVC project

+1
source
+1

Source: https://habr.com/ru/post/1715479/


All Articles