You are here Articles List / ASP Overview Section 2

ASP Overview - Response Object

     Introduction
     Response
     Request
     Application
     Session
     Server

Response Object
The Response Object is used to send information to the browser to display, redirect the browser to a different URL, and send cookies to the browser.

An example use of the Response Object is to print out a line to show in the browser:

Response.Write("Hello World.<BR>")

This will print out to the browser window "Hello World." -- without the quotes. Also notice the html break tag, you can write html tags in to these write statements.

<< Prev Section - Introduction  |  Next Section - Request Object >>