Printing text to the HTML part of the document is the easiest part of all in my
opinion.
All you have to do is call the Response.Write method with the text to be
printed in "", for example:
Response.Write("Something boring to say.")
Another way to do this is to put an = right after a <% and a %>
at the end of the line, for example:
<%="Something boring to say."%>
or to print a variable, for example:
Response.Write(i) or <%=i%>
By: Matthew Holder