vote up 6 vote down star
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

flag

7 Answers

vote up 3 vote down

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|flag
vote up 7 vote down

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|flag
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 at 9:02
vote up 0 vote down

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

link|flag
vote up 11 vote down

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|flag
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 at 14:02
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.