The Write method writes a specified string to the current HTTP output.
Response.Write variant
The following examples use the Response.Write method to send output to the client.
I just want to say <% Response.Write "Hello World." %>
Your name is: <% Response.Write Request.Form("name") %>
The following example adds an HTML tag to the Web page output. Because the string returned by the Write method cannot contain the character combination %>, the escape %\> has been used instead. The following script
<% Response.Write "<TABLE WIDTH = 100%\>" %>
produces the output
<TABLE WIDTH = 100%>