VB.NET - Frames - Response.Redirect

nd4x

New member
Joined
Apr 25, 2003
Messages
1
Anyone know the syntax for targeting a specific frame using response.redirect? Instead of defaulting to the current active frame, I want to target one of the other 2 for the new web page.
 
You can not use Response.Redirect() to achieve what youre trying to do. ASP.NET does not provide any support for frames.
 
You cannot do it at server site, but you can do it in client site using javascript or vbscript. (you can use VB.NET to generate your script)
 
Back
Top