Author | Topic: How to disable the fast popup lock withi the new IE ? | |
---|---|---|
Shum [MingYik] | How to disable the fast popup lock withi the new IE ? on Sat, 04 Sep 2004 02:13:50 +0800 Hello All, I have upgade SP2 for Windows Xp And find that The New IE have the Fast Popup Lock function ... my WAA (Web Application with popup new IE for new Page (sometimes) Once happen .... there is popup locking message from the new IE ...?? my question is how to disable such function without ask the end-User to do so ? Shum www.mingyik.com | |
Michael J. Gregg | Re: How to disable the fast popup lock withi the new IE ? on Sat, 04 Sep 2004 23:49:19 -0400 Seems like that would defeat the purpose of popup blockers now wouldn't it. "Shum [MingYik]" <shum@mingyik.com> wrote in message news:jVrcJHekEHA.5064@S15147418... > Hello All, > > I have upgade SP2 for Windows Xp > > And find that The New IE have the Fast Popup Lock function ... > > my WAA (Web Application with popup new IE for new Page (sometimes) > Once happen .... there is popup locking message from the new IE ...?? > > my question is how to disable such function without ask the end-User to do > so ? > > Shum > www.mingyik.com > > | |
Shum [MingYik] | Re: How to disable the fast popup lock withi the new IE ? on Sun, 05 Sep 2004 14:19:54 +0800 Hello Michael J. Gregg, > Seems like that would defeat the purpose of popup blockers now wouldn't > it. Yes .... Seems I need to change my web application .... Within my Application: 1.) Someone click a link 2.) goto a logon page (for enter User Code and Password) 3.) Popup a new IE window for entering the authourized webpage Following is the calling method for popup the new page ... Is there any other idea for calling newpage and doesnot wake up the popup protection ? <HTML> <HEAD> <TITLE>Application Home Page</TITLE> <meta http-equiv="Content-Type" content="text/html; charset=Big5"> </HEAD> <SCRIPT LANGUAGE="JavaScript1.2" SRC="/myjs/myutl.js"></SCRIPT> <BODY> <SCRIPT LANGUAGE="JavaScript1.2"><!-- {myjsallwindow("mywchat","mysite",'"zh-hk"," ","WCMPY"','"INVMST0000","","OCHAT","|","?ac2a?N","1","","","","",""','"mywchat","mysite"')} //--></SCRIPT> </BODY> </HTML> the following javascript function is in myutl.js extenral file function myjsallwindow(cDll,cFnc,cCPY,cPAS,cALT) { var cTmp = "/cgi-bin/waa1gate.exe?WAA_PACKAGE=" +cDll+ "&WAA_FORM=" +cFnc+ '&MY_CPY=' +cCPY+ '&MY_PAS=' +cPAS+ '&MY_ALT=' +cALT ; "width=640,height=480,status,resizable,scrollbars,menubar,toolbar,location") ; var oWin = window.open( cTmp, cFnc, "width=640,height=480,status,resizable,scrollbars,menubar,toolbar,location") ; oWin.focus(); return( oWin ) } Shum www.mignyik.com "Michael J. Gregg" <yomama@myhouse.com> glsD:E$IJjtvkEHA.2992@S15147418... > Seems like that would defeat the purpose of popup blockers now wouldn't > it. > > > > "Shum [MingYik]" <shum@mingyik.com> wrote in message > news:jVrcJHekEHA.5064@S15147418... >> Hello All, >> >> I have upgade SP2 for Windows Xp >> >> And find that The New IE have the Fast Popup Lock function ... >> >> my WAA (Web Application with popup new IE for new Page (sometimes) >> Once happen .... there is popup locking message from the new IE ...?? >> >> my question is how to disable such function without ask the end-User to >> do so ? >> >> Shum >> www.mingyik.com >> >> > > |