N Nish Nov 29, 2004 #1 How to close a web page after n number of seconds. I am using .Net Framework 1.1 and IE6+. Thanks, Nish
How to close a web page after n number of seconds. I am using .Net Framework 1.1 and IE6+. Thanks, Nish
G Guest Nov 29, 2004 #2 Call a javascript on the pageload event: setTimeout('winClose()', 5000) more referal on http://www.devguru.com/Technologies/ecmascript/quickref/win_settimeout.htm http://msdn.microsoft.com/library/d...author/dhtml/reference/methods/settimeout.asp or simply search "setTimeOut" in google hope its helep weichung
Call a javascript on the pageload event: setTimeout('winClose()', 5000) more referal on http://www.devguru.com/Technologies/ecmascript/quickref/win_settimeout.htm http://msdn.microsoft.com/library/d...author/dhtml/reference/methods/settimeout.asp or simply search "setTimeOut" in google hope its helep weichung
N Nish Nov 29, 2004 #3 thanks, nish weichung said: Call a javascript on the pageload event: setTimeout('winClose()', 5000) more referal on http://www.devguru.com/Technologies...author/dhtml/reference/methods/settimeout.asp or simply search "setTimeOut" in google hope its helep weichung Click to expand...
thanks, nish weichung said: Call a javascript on the pageload event: setTimeout('winClose()', 5000) more referal on http://www.devguru.com/Technologies...author/dhtml/reference/methods/settimeout.asp or simply search "setTimeOut" in google hope its helep weichung Click to expand...
J Jignesh Desai Nov 29, 2004 #4 Check setTimeout function of javascript with can do automatic closing of browser window. after a specified interval. Regards, Jignesh.
Check setTimeout function of javascript with can do automatic closing of browser window. after a specified interval. Regards, Jignesh.