logging text to iframe

dinoboy

Newcomer
Joined
Oct 11, 2003
Messages
24
Location
Estonia
Hey!
I generate a realtime log about actions taken place on button click. I use Response.Write() and Response.Flush() methods.
But my question is, that can I send the output to iframe which is located on the same page? Can I do it directly or I must generate a some kind of temporary page?
 
Why not have the iframe page do the Response.writes, then onClick of your button, write javascript that browser uses to set the iframe's src location. attach a querystring or whatever to start that page logging.
 
Back
Top