I want to do a Response.Redirect("MyPage.aspx") but have it open in a new browser window. I've done this before without using the JavaScript register script method. I just can't remember how =)
Thanks
|
1
|
I want to do a Response.Redirect("MyPage.aspx") but have it open in a new browser window. I've done this before without using the JavaScript register script method. I just can't remember how =) Thanks |
||
|
|
|
|
This is not possible with Response.Redirect as it happens on the server side and cannot direct your browser to take that action. What would be left in the initial window? A blank page? |
||
|
|
|
|
Because Response.Redirect is initiated on the server you can't do it using that. If you can write directly to the Response stream you could try something like:
|
||
|
|
|
You may want to use the Page.RegisterStartupScript to ensure that the javascript fires on page load. |
||
|
|
|
|
I just found the answer and it works :) You need to add the following to your server side link/button:
My entire button code looks something like:
In the server side OnClick I do a Response.Redirect("MyPage.aspx"); and the page is opened in a new window. The other part you need to add is to fix the form's target otherwise every link will open in a new window. To do so add the following in the header of your POPUP window.
and
|
||||||||
|
|
|
You can use the window.open. You best bet is to register a start up script, that will open you page. Do not use Modal Window since it is only supported in IE. |
||
|
|
|
|
You can also use in code behind like this way
|
|||
|
|
|
|
Thank you very much for this! I have been on google for most of the day and everyone says this is impossible to open a new window using a link button but THIS DOES WORK BRILLIANTLY! Thank you! |
||
|
|