ASP Response Object Last Updated : 29 Sep, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 Buffer: It defines that whether the out page would be buffered or not.CacheControl: It is used to set whether a proxy server can cache the HTML Output or not.Charset: It is used to append the name of the character set to the content-type header in the Response object.ContentType: It is used to set the HTTP content type/subtype for the response header Object. The default value is text/HTMLExpires: It is used for setting the duration of time for the page will be expired before it catches on the browser.ExpiresAbsolute: It is used for setting the date and time at which a page cached on a browser expires.IsClientCertificate: It is used to specify whether the client is connected or disconnected from the server.pics: It is used to appends a value to the PICS label response header.status: It is used to specify the value of the status of the asp page which is returned by the user. Methods AddHeader: This method s used to specify for adding a new name for the HTTP Header and provide and given a value to the HTTP Response.AppendToLog: This Method is used for adding a string to the end of the server log entry for this request.Clear: This Method is used to clear or erase a Buffered HTML Output.End: This Method is used to ensure the webserver stops the processing of the scripts and returns the current result.Flush: This Method is used to send buffered Output immediately.Redirect: This Method is used to redirect the client to a different URLWrite: This method writes a specified string to the output. Collections cookies: It is used to set or get values of the cookies.Example: Below code illustrates the different methods of the Response Object. ASP <% Response.Redirect "https://www.geeksforgeeks.org" Response.AppendToLog "My log message" Response.Write("Hello GeeksforGeeks"); Response.AddHeader "WARNING","Error"404 Not found" %> Output GeeksforGeeks Comment More infoAdvertise with us Next Article ASP Server CreateObject Method M manaschhabra2 Follow Improve Article Tags : Software Engineering ASP-Properties ASP-Methods ASP-Basics Similar Reads ASP Request Object The ASP Request Object is used to retrieve the information from the client browser. The Request Object is used when the client wants to request for a particular page from the server.  The Request Object has properties, methods, and collections that are given below Collections : Client Certificate: 2 min read ASP Response.Cookies Collection Basically Cookies are small files which are stored on a userâs computer. It is used to hold a modest amount of data specific to a particular client and website and can be accessed either by the web server or by the client computer. The Response.Cookies Collection is used for setting the value of col 2 min read ASP Server CreateObject Method The ASP Server CreateObject Method is used to create an instance of a server object. The object created by this method has page scope. These objects are destroyed when the server finished the Current ASP page. We generally use the <object>tag in Global.asa file to create an object in the Sessi 1 min read SAP ABAP | Understanding Object SAP ABAP (Advanced Business Application Programming) is a high-level programming language created by the German software company SAP SE. ABAP is primarily used for developing and customizing applications within the SAP ecosystem, which includes enterprise resource planning (ERP) systems and other bu 4 min read ASP ASPError Object Properties ASP Code: The ASPCode is used for returning the string value which determines the error code that would be generated by the IIS server. This Property applies to Error Object. It is an inbuilt method of the Error object. Syntax: ASPError.ASPCode() ASPDescription: The ASPDescription is used to return 2 min read ASP Session.StaticObjects Collection The Session.StaticObjects Collection in ASP is used to store all the objects created by using the <object> tag within the scope of the session object. Syntax: Session.StaticObjects( Key ) Parameter Values Key: It is a required parameter. It specifies the name of the property of an object tha 1 min read Like