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

link|improve this question
feedback

14 Answers

I just found the answer and it works :)

You need to add the following to your server side link/button:

OnClientClick="aspnetForm.target ='_blank';"

My entire button code looks something like:

<asp:LinkButton ID="myButton" runat="server" Text="Click Me!" OnClick="myButton_Click" OnClientClick="aspnetForm.target ='_blank';"/>

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.

<script type="text/javascript">
        function fixform() {
            if (opener.document.getElementById("aspnetForm").target != "_blank") return;

            opener.document.getElementById("aspnetForm").target = "";
            opener.document.getElementById("aspnetForm").action = opener.location.href;
            }
</script>

and

<body onload="fixform()">
link|improve this answer
does this work if Javascript is disabled? – Brian Boatright Sep 19 '08 at 21:09
Nope as this uses javascript to change the target of the form. Instead the page would submit as normal. – Toby Mills Sep 19 '08 at 21:44
Plus you could have a security violation if you want to redirect to a page outside your virtual directory. – Drejc Sep 22 '08 at 21:42
That may work, but it looks very brittle. – rick schott Oct 21 '09 at 14:02
Somehow in my case its not working. I'm opening the same page in the new window and writing the response to that page. But when I keep fixform() method in the masterpage it throws error saying document is null. Not sure why it is throwing still trying to find a solution. Though I've come up with a temporary solution by using onClientClick="aspnetForm.target='';" property for other buttons on that page. – JPReddy Jun 25 '10 at 10:42
show 2 more comments
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:

response.write("<script>");
response.write("window.open('page.html','_blank')");
response.write("</script>");
link|improve this answer
2  
This work, but then the page where my button is get's changes, its like the CSS or DIVS are being affected. – Etienne Oct 21 '09 at 9:02
.This is working.But its affecting my actual page. – ILLUMINATI7590 Jun 6 '11 at 6:38
the new window pops up every time when going back and forth. – Chensformers Jun 14 '11 at 23:17
feedback

You can use this as extension method

public static class ResponseHelper
{ 
    public static void Redirect(this HttpResponse response, string url, string target, string windowFeatures) 
    { 

        if ((String.IsNullOrEmpty(target) || target.Equals("_self", StringComparison.OrdinalIgnoreCase)) && String.IsNullOrEmpty(windowFeatures)) 
        { 
            response.Redirect(url); 
        } 
        else 
        { 
            Page page = (Page)HttpContext.Current.Handler; 

            if (page == null) 
            { 
                throw new InvalidOperationException("Cannot redirect to new window outside Page context."); 
            } 
            url = page.ResolveClientUrl(url); 

            string script; 
            if (!String.IsNullOrEmpty(windowFeatures)) 
            { 
                script = @"window.open(""{0}"", ""{1}"", ""{2}"");"; 
            } 
            else 
            { 
                script = @"window.open(""{0}"", ""{1}"");"; 
            }
            script = String.Format(script, url, target, windowFeatures); 
            ScriptManager.RegisterStartupScript(page, typeof(Page), "Redirect", script, true); 
        } 
    }
}

With this you get nice override on the actual Response object

Response.Redirect(redirectURL, "_blank", "menubar=0,scrollbars=1,width=780,height=900,top=10");
link|improve this answer
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?

link|improve this answer
feedback

You can also use in code behind like this way

ClientScript.RegisterStartupScript(this.Page.GetType(), "",
  "window.open('page.aspx','Graph','height=400,width=500');", true);
link|improve this answer
This works fine for me and is basically the short version of Abhishek Shrivastava's solution above. However, there are a couple of caveats to be aware of. First, this will trigger popup blockers. In particular, it will not work at all in Safari 5.0 if the popup blocker is enabled as Safari doesn't prompt you for blocked popups and doesn't allow you to make popup exceptions. Second, Chrome ignores the page argument to window.open. So even if you use window.open('page.aspx','_blank'); it still opens it in a new window with navigation bar disabled and nav buttons missing instead of a new tab. – Kasey Speakman Jun 14 '11 at 22:30
feedback

The fixform trick is neat, but:

  1. You may not have access to the code of what loads in the new window.

  2. Even if you do, you are depending on the fact that it always loads, error free.

  3. And you are depending on the fact that the user won't click another button before the other page gets a chance to load and run fixform.

I would suggest doing this instead:

OnClientClick="aspnetForm.target ='_blank';setTimeout('fixform()', 500);"

And set up fixform on the same page, looking like this:

function fixform() {
   document.getElementById("aspnetForm").target = '';
}
link|improve this answer
feedback

I always use this code... Use this code

String clientScriptName = "ButtonClickScript";
Type clientScriptType = this.GetType ();

// Get a ClientScriptManager reference from the Page class.
ClientScriptManager clientScript = Page.ClientScript;

// Check to see if the client script is already registered.
if (!clientScript.IsClientScriptBlockRegistered (clientScriptType, clientScriptName))
    {
     StringBuilder sb = new StringBuilder ();
     sb.Append ("<script type='text/javascript'>");
     sb.Append ("window.open(' " + url + "')"); //URL = where you want to redirect.
     sb.Append ("</script>");
     clientScript.RegisterClientScriptBlock (clientScriptType, clientScriptName, sb.ToString ());
     }
link|improve this answer
This code will never affect the CSS class so the parent window will not be affected at all!! – Abhishek Shrivastava Aug 26 '10 at 18:19
1  
Well, this certainly is a strong argument for MVC. Not to take anything away from your code. Far from it. It's things like this that typify webforms, blech. – MrBoJangles Dec 28 '10 at 22:19
All of this code can be condensed to one line... see shalu's solution below. It's exactly the same effect, but without all the unneeded bloat. – Kasey Speakman Jun 14 '11 at 22:33
feedback
<asp:Button ID="btnNewEntry" runat="Server" CssClass="button" Text="New Entry"

OnClick="btnNewEntry_Click" OnClientClick="aspnetForm.target ='_blank';"/>

protected void btnNewEntry_Click(object sender, EventArgs e)
{
    Response.Redirect("New.aspx");
}

Source: http://dotnetchris.wordpress.com/2008/11/04/c-aspnet-responseredirect-open-into-new-window/

link|improve this answer
its saying aspnetForm is undefined. – ILLUMINATI7590 Jun 6 '11 at 6:48
This one worked for me perfect. :) – Merin Nakarmi Apr 19 at 17:43
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:

protected void MyButton_OnPreRender(object sender, EventArgs e)
{
    string URL = "~/MyPage.aspx";
    URL = Page.ResolveClientUrl(URL);
    MyButton.OnClientClick = "window.open('" + URL + "'); return false;";
}
link|improve this answer
feedback

You may want to use the Page.RegisterStartupScript to ensure that the javascript fires on page load.

link|improve this answer
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/

protected void Page_Load(object sender, EventArgs e)
{
    Calendar1.SelectionChanged += CalendarSelectionChanged;
}

private void CalendarSelectionChanged(object sender, EventArgs e)
{
    DateTime selectedDate = ((Calendar) sender).SelectedDate;
    string url = "HistoryRates.aspx?date="
+ HttpUtility.UrlEncode(selectedDate.ToShortDateString());
    ScriptManager.RegisterClientScriptBlock(this, GetType(),
"rates" + selectedDate, "openWindow('" + url + "');", true);
}
link|improve this answer
feedback

Contruct your url via click event handler:

string strUrl = "/some/url/path" + myvar;

Then:

ScriptManager.RegisterStartupScript(Page, Page.GetType(), "popup", "window.open('" + strUrl + "','_blank')", true);
link|improve this answer
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:

<asp:Button ID="btnSubmit" OnClientClick="openNewWin();"  Text="Submit" OnClick="btn_OnClick" runat="server"/>

Then in your js file referenced on the SAME page:

function openNewWin () {
    $('form').attr('target','_blank');
    setTimeout('resetFormTarget()', 500);
}

function resetFormTarget(){
    $('form').attr('target','');
}
link|improve this answer
feedback

protected by Community Nov 21 '11 at 4:54

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.