The following example use the Response.Write method and HTML to send output to the client:
<H3 align=center>I just want to say <% Response.Write "Hello World.</H3><BR>" %>
Your name is: <% Response.Write Request.QueryString("name") %> <BR>
The following example uses <%= instead of Response.Write.
The date is: <%= Date %> <BR>
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 %\> is used instead.
<% Response.Write "<TABLE WIDTH = 100%\>" %>
The previous example produces the following output:
Applies To