From: Alan on
When using "window.close", a dialog box ask u to comfirm, how to disable
it
?



From: Evertjan. on
Alan wrote on 06 feb 2005 in microsoft.public.inetserver.asp.general:
> When using "window.close", a dialog box ask u to comfirm, how to disable
> it ?
>

Not with serverside scripting.

You are off topic on this ASP NG.

--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

From: Ben Strackany on
You could maybe prevent it by opening the window via window.open()
javascript.

--
Ben Strackany
www.developmentnow.com


"Alan" <alan(a)neind.net> wrote in message
news:eWL5IJIDFHA.1564(a)TK2MSFTNGP09.phx.gbl...
> When using "window.close", a dialog box ask u to comfirm, how to disable
> it
> ?
>
>
>


From: Roji. P. Thomas on
OK here you go. You can STILL fool IE with the following script.

<SCRIPT LANGUAGE=javascript>
<!--
//Close main window without confirmation.
daddy = window.parent.self;
daddy.opener = window.parent.self;
daddy.close();
//-->
</SCRIPT>

--
Roji. P. Thomas
Net Asset Management
https://www.netassetmanagement.com


"Ben Strackany" <infoNOSPAM(a)developmentnow.nospam.com> wrote in message
news:eks23LVDFHA.3256(a)tk2msftngp13.phx.gbl...
> You could maybe prevent it by opening the window via window.open()
> javascript.
>
> --
> Ben Strackany
> www.developmentnow.com
>
>
> "Alan" <alan(a)neind.net> wrote in message
> news:eWL5IJIDFHA.1564(a)TK2MSFTNGP09.phx.gbl...
>> When using "window.close", a dialog box ask u to comfirm, how to disable
>> it
>> ?
>>
>>
>>
>
>