tags:

views:

21

answers:

2

Hi all

i want to know about HttpContext,request and response? can anyone give me the good tutorial link..(Basic things)

thanks saj

+1  A: 

Try this

Or this

You could also try to use google.com for some searching on the net by the way.

Younes
A: 

If you are referring to HttpContext in ASP.Net, it is a key object that exposes the underlying Request (incoming messages) and Response (outgoing message) streams. At a low level, this object is populated by IIS and the ASP.Net framework.

This means that HttpContext is available to any business object running inside of a .Net web application (not just an ASPX page, ASCX, etc).

HttpContext.Current provides access to Request, Response, Session, Cache, and more.

http://msdn.microsoft.com/en-us/library/system.web.httpcontext.aspx

For HTTP basics such as Request and Response, see the links that Younes provided.

Tim