joe_pool_is
Well-known member
Is there a way to get my ASP responses to output to a <div> tag?
In my code, if there is an error or if I just want to view the data, I simply write to the screen with Response.Write(data).
The trouble is, this looks tacky! Expecially if your customer happens to see it before you have cleaned it up.
Id like to have the response write to a <div> tag, instead. Then, the <div> tag can be visible only while I am debugging.
Also, if I ever have to do work on the code later, make the <div> tag visible again, and off I go!
In my code, if there is an error or if I just want to view the data, I simply write to the screen with Response.Write(data).
The trouble is, this looks tacky! Expecially if your customer happens to see it before you have cleaned it up.
Id like to have the response write to a <div> tag, instead. Then, the <div> tag can be visible only while I am debugging.
Also, if I ever have to do work on the code later, make the <div> tag visible again, and off I go!