i

ASP.Net A Complete Guide

HttpResponse Class

This class encapsulates HTTP response data that is created as part of .NET operations. The .NET Framework uses HttpResponse class while creating a response that involves writing server controls back to the client. Your own server-side code may also use the Write method of the Response object to write data to the output stream that will be sent to the client.

 

Methods

Descriptions

 

End

Stops processing scrpt and returns the result

Response.End

 

Write

Send output from server to browser.

Response.write("Hey There!")

Clear

Buffered html output gets cleared.

Response.clear()

 

Flush

Sends buffered HTML output immediately.

Response.Flush