Open In App

ASP Response Object

The Response Object is used to send a response to the client request from a server. It has many predefined methods, properties, and collections.  

It has some methods, properties, and collections.  



Properties

Methods  



 

Collections

Example:  Below code illustrates the different methods of the Response Object.  




<%
    Response.Redirect "https://www.geeksforgeeks.org" 
    Response.AppendToLog "My log message"
    Response.Write("Hello GeeksforGeeks");
  
    Response.AddHeader "WARNING","Error"404 Not found"
  
%>

Output 

GeeksforGeeks
Article Tags :