i

ASP.Net A Complete Guide

HttpRequest Class

  • The System.web is the main namespace for the HttpRequest. It is used to read the various HTTP values.

  • It allows ASP.NET to read the HTTP values sent by a client during a Web request.

  • Ex: public sealed class HttpRequest

  • The Request property returns an HttpRequest object.

  • We can extract whatever information we need, using the properties of HttpRequest.