I have a web page that processes and then sends off some information. That part works great. What I want to do is have the browser close itself most of the time when it is finished and returns a certain result. Also, without requiring confirmation to close. Im using vbscript on an asp page. This is what I was trying to make work:
<%
if xyz = "ok" then window.close()
%>
but, this doesnt work at all.. "window.close()" doesnt even work without the "if" statement.
if i use <script language "vbscript"> tags then the window.close() command works but then the variable xyz is empty..
any ideas?
-qwik