| Author: RamarajSundaram 19 Nov 2008 | Member Level: Diamond | Rating:  Points: 1 |
The HttpRequest class lives in the System.Web namespace, so you'll need to import that namespace.
|
| Author: Sravya 19 Nov 2008 | Member Level: Gold | Rating:  Points: 3 |
By default System.Web name space will be imported for every page. If not import the specified. using System.Web; you can do this in Web.config file also.
|