PDA

View Full Version : Specify Target in Response.Redirect


Bobba Buoy
11-21-2004, 01:54 PM
Can this be done?

eRad
11-22-2004, 11:33 AM
If you are using frames or something... you don't need server-side programming to redirect them ... just set their src as the page you want.

If you are using SSI, with iframes for example, you can make the iframe content dynamically load based on a querystring.

then if you want the iframe source to change, you redirect the page to itself with a different querystring variable.

putts
11-22-2004, 01:58 PM
I think know what you're saying Bobba, you have a frameset consisting of sidebar A and content frame B. you do something inside ASP in frame B and need it to update A.....right?

In that case, I will usually use a quick little dummy form with some javascript immediately following it to change the src of the other frame.

Bobba Buoy
11-22-2004, 11:00 PM
Thanks both of you. That was helpful!