asp.net - What are some good resources for learning about HttpContext, Request and Response? -
i'm trying learn httpcontext, request , response. resources? i'm interested in links tutorials (basic things).
thanks saj
if referring httpcontext in asp.net, key object exposes underlying request (incoming messages) , response (outgoing message) streams. @ low level, object populated iis , asp.net framework.
this means httpcontext available business object running inside of .net web application (not aspx page, ascx, etc).
httpcontext.current
provides access request, response, session, cache, , more.
http://msdn.microsoft.com/en-us/library/system.web.httpcontext.aspx
for http basics such request , response, see links younes provided.
Comments
Post a Comment