I want to write a raw html page to the browser. I thought that something liek this would do it but this write to the current page:
Dim html as New StringBuilder
html.append("<html><body>A new html page</body></html>"
Response.Clear()
Response.Output.Write(html.ToString)
I know this can be done I just can't remember how