METHOD: Response.Write
Response.Write(Variant)
The Write method writes any specified string to the HTTP output.
There is one mandatory argument.
Variant
The Variant argument is the data to be written as a string.
A variant is a VBScript data type and includes characters, integers, and strings.
The variant cannot contain the character combination of %>.
Code:
<%
Response.Write "Hello World"
Response.Write "<BR>" %>
Output:
Hello World<BR>
Copyright 1999-2001 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information
|