-
Syntax:
- Response.Write(Variant)
- 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 %>.
The Write method sends any specified variant to the browser.
The Write method writes any specified string to the HTTP output.
There is one mandatory argument.
Examples
Code:
<%
Response.Write "Hello World"
Response.Write "<BR>"
%>
Output:
Hello World<BR>