I'm trying to do this in a way that will prevent end-user browser security features (such as a pop-up blocker) from getting in the way of my application.
|
1
|
|
|
|
|
|
There is no way to disable pop-up blockers to prevent opening pop-ups. Why do you want to use Response.Redirect? I find its best to inject javascript using this method:
Another possibility is to use a modal dialog or floating iframe window to show other content on the current page. jQuery is great for this. For example, check out jQuery impromptu if you're interested in simple messages/dialogs |
||||||
|
|
|
"Use for a pop-up" how? You want the redirect to create the pop-up? That can't be done. A redirect is a return status from the request made by a particular browser window. Responses don't create windows. |
||||
|
