Re: Detect pop up blocker
I'm no ASP expert, but I've seen it done in Java.. I get a message sometimes with proprietary payroll stuff at work saying "Your computer has blocked a popup, click here to open it"
however, it's a Java window, not an actual Explorer window.
Bill
Re: Detect pop up blocker
The cannot be done directly with ASP.NET.
As conipto said, you can use JS. Not sure how mind you.
Do you not get a warning message that a popup has been blocked?
Woka
Re: Detect pop up blocker
You do it by opening a small 1x1 window and closing it.
Code:
var testwin = window.open('','','width=1,height=1,left=0,top=0,scrollbars=no');
if(testwin)
var hasblocker = false
else
var hasblocker = true
testwin.close()
Then check the value of hasblocker.
HTH