This is a test
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
</body>
</html>
(note that the text "This is a test" was inserted at the TOP of the page, rather than in the BODY)
I know that I can add to a Control instead of using Response.Write, but the thing is I want to insert some JS/JS SRC to the HEAD tag and I don't think there is a control that I can use for that (let me know if I'm wrong).
Is there a way that I can get Response.Write to output where it is placed (in this case between the BODY tags)?
Re: Directing the placement of a Document.Write output
Thank you dannystommen, that was exactly what I needed.
I used Literal method as that gave me the most flexibility; I could insert what I wanted anywhere in the HTML document, including the HEAD area where I needed to in this application.
Bookmarks