vote up 0 vote down star

I need to open a new window from code-behind on post-back if a specific radio button is selected.

Is there any way to do this?

Thank you.

flag

3  
FYI: Pop up blockers will block this window from opening. – epascarello May 22 at 12:09

4 Answers

vote up 1 vote down check

You will need to run javascript on postback

link|flag
vote up 0 vote down

New windows can be very sketchy, depending on the content that you need to present you might consider using an in window pop-in if you will. You will avoid pop-up blockers that way. If you can give more details we can give better answers.

link|flag
vote up 0 vote down

Simple sample of RegisterStartupScript:

RegisterStartupScript("id1", "<script type=\"text/javascript\">alert(\"I'm from JavaScript.\");</script>");
link|flag
vote up 1 vote down

You can use RegisterStartupScript to send a window.open script to run once the page has loaded.

However, this will cause the majority of popup blockers to get in your way.

link|flag

Your Answer

Get an OpenID
or

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