How do you write HTML using Response.Write so the HTML tags are recognized? Is there a tutorial on the basic method to do this?
For example, if I want to just generate an HTML page in its basic structure:
<html>
<head>
<title>My Title</title>
</head>
<body>
<div id="container">
<div id="tophdr"></div>
<div id="main"></div>
<div id="footer"></div>
</div>
</body>
</html>
I'm just trying to get a starting point on how to write HTML output using ASP. Thanks for any help.
-Dman100-