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
|
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 | |||
|
feedback
|
|
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
| |||||||||||
feedback
|
|
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:
| |||||||||
feedback
|
|
You can use this as extension method
With this you get nice override on the actual Response object
| |||
|
feedback
|
|
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? | |||
|
feedback
|
|
You can also use in code behind like this way
| ||||
feedback
|
|
The fixform trick is neat, but:
I would suggest doing this instead:
And set up fixform on the same page, looking like this:
| ||||
|
feedback
|
|
I always use this code... Use this code
| |||||||||
feedback
|
Source: http://dotnetchris.wordpress.com/2008/11/04/c-aspnet-responseredirect-open-into-new-window/ | |||||
|
feedback
|
|
If you can re-structure your code so that you do not need to postback, then you can use this code in the PreRender event of the button:
| |||
|
feedback
|
|
You may want to use the Page.RegisterStartupScript to ensure that the javascript fires on page load. | |||
|
feedback
|
|
you can open new window from asp.net code behind using ajax like I did here http://alexandershapovalov.com/open-new-window-from-code-behind-in-aspnet-68/
| |||
|
feedback
|
|
Contruct your url via click event handler:
Then:
| |||
|
feedback
|
|
I have simplified it here. http://www.blogger.com/blogger.g?blogID=7250945936768889147#editor/target=post;postID=71938192797819389 | |||
|
feedback
|
|
Here's a jQuery version based on the answer by @takrl and @tom above. Note: no hardcoded formid (named aspnetForm above) and also does not use direct form.target references which Firefox may find problematic:
Then in your js file referenced on the SAME page:
| |||
|
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.