| View previous topic :: View next topic |
| Author |
Message |
Raigo Guest
|
Posted: Fri Feb 13, 2004 12:43 pm Post subject: Response.SendRedirect and Frames |
|
|
When page is inside a Frame is it possible to open using SendRedirect to
open next page outside the frame?
In HTML there should be added 'target="_top"'
Response.SendRedirect('MyURL'); opens next page inside the same frame.
|
|
| Back to top |
|
 |
AdamStefanCosta Guest
|
Posted: Sat Feb 14, 2004 9:59 pm Post subject: Re: Response.SendRedirect and Frames |
|
|
| Quote: | When page is inside a Frame is it possible to open using SendRedirect to
open next page outside the frame?
|
Requests started by a frame, always have your return inside it.
To open new windows, u can use javascript window.open function, like this:
window.open('your_url','awindowname, 'width=400,height=200');
HTH
AdamStefanCosta
|
|
| Back to top |
|
 |
Frank Lauter Guest
|
Posted: Mon Feb 16, 2004 9:20 am Post subject: Re: Response.SendRedirect and Frames |
|
|
Hi!
The key is to change the link before you click on it
e.G.:
<a target="_top" href="http://Domain.com/cgi/Your.dll/OpeninNewFrame">
Frank
"Raigo" <nospam@nospam> schrieb im Newsbeitrag
news:402cc64a$1 (AT) newsgroups (DOT) borland.com...
| Quote: | When page is inside a Frame is it possible to open using SendRedirect to
open next page outside the frame?
In HTML there should be added 'target="_top"'
Response.SendRedirect('MyURL'); opens next page inside the same frame.
|
|
|
| Back to top |
|
 |
|