You are on page 1of 8

Request, Response

Session objectives
 Overview of Request, Response,
Server objects
 Page Navigation
 Getting details about the client
browser

Kumar S
http://www.guyfromchennai.com
Request object

System.Web.HttpRequest
Enables ASP.NET to read the HTTP values
sent by a client during a Web request

Kumar S
http://www.guyfromchennai.com
Response object
System.Web.HttpResponse
Encapsulates HTTP response information
from an ASP.NET operation

Kumar S
http://www.guyfromchennai.com
Server object
System.Web.HttpServerUtility
Provides helper methods for processing
Web requests

Kumar S
http://www.guyfromchennai.com
Page Navigation
 Response.Redirect(“Default2.aspx”)
 Server.Transfer(“Default2.aspx”)
 Server.Execute(“Default2.aspx”)

Kumar S
http://www.guyfromchennai.com
Getting details about the client
browser
 Request.Browser property returns
System.Web.HttpBrowserCapabilities
object
 This object is used to get the details
about the client browser

Kumar S
http://www.guyfromchennai.com
Session Summary
 Overview of Request, Response,
Server objects
 Page Navigation
 Getting details about the client
browser

Kumar S
http://www.guyfromchennai.com

You might also like