I am using an IFrame, and from this IFrame I want to redirect to another page.
Please tell me how to do this without any JavaScript, ie, no window.location.
Response.Redirect shows the page in the IFrame, but I want to show page as a main page.
|
|
It will be a hazard if we can manipulate other frames/window withou using client-side scripts or user-invoked actions. Here's a list of alternatives: Javascript options:
Non-javascript options:
|
|||||||||||||
|
|
I used this code.
And it works. |
|||
|
I think there is no way to do it without JS. Browser will treat every redirect from server in the iframe. You have to 'tell' it to reload whole window using JavaScript. |
|||
|
|
|
Well, this is really a hack, but you could define Parent-Frame as default target:
As this will apply to all your links in the iframe, this may not be a satisfying solution ;-) |
|||
|
|
|
Like all others have pointed out, you can't do it without using JavaScript. However, on the server side you can emit the necessary JavaScript so that the page gets redirected to the target location as soon as it loads within the iframe. |
|||
|
|
|
you CAN do this without javascript, if you have access to the head block of the remote page:
very simple, easy, 1-line solution, if you have access to remote page head. no javascript. |
|||
|
|