Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP & Browser Windows

Status
Not open for further replies.

dragonspiritwebb

Technical User
Feb 4, 2002
5
Hi,

I'm a newbie and i've created several ASP pages to carry out a set of specific tasks, but each one opens up a new iexplorer and waits for you to exit it.

Is there a way to use asp to force the browser to exit - or can i call all the asp's from one asp in one browser???

If so, I would I do it?

Thanks in advance
 
Try something along thuse lines...

I found the following snippett in
<head>
<OBJECT id=closes type=&quot;application/x-oleobject&quot; classid=&quot;clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11&quot;>
<PARAM NAME=&quot;Command&quot; VALUE=&quot;Close&quot;>
</OBJECT>
<script language=&quot;javascript&quot;>
function myclose() {
if (typeof window.ActiveXObject != 'undefined') {
closes.Click(); //for IE browsers
}
else {
window.close(); //for non ActiveX browsers
}
}
</script>
</head> _______________________________________________
OutsideIntranets.com
Stop wasting time, get to work
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top