[2005] How can i output into the end of Web Page using Response.Write
Dear all,
i hope everybody is okay, i am using response.write to output some dynamic values to a web page on the loading event. ( i am using visual basic 2005 web projects if anybody interested) .
i use
[vbcode]
response.write("Hello People")
[/vbcode]
now this works fine, but if the web page contains any controls, the output string hello people appears on the top of the page. i need to display the output text after the control at the end of the page
how can i do so ???
Thx all in advance
Re: [2005] How can i output into the end of Web Page using Response.Write
Why not just place a label on the page after the control and then set the text to what you want.