May 15, 2010 #1 jasonhuibers Programmer Sep 12, 2005 290 CA How can I close the window once the asp is finished processing?
May 16, 2010 #2 vicvirk Programmer Feb 4, 2009 636 CA javascript at the end of your document (at the very end after your asp has finished processing) Code: <script language="javascript" type="text/javascript"> window.close(); </script> -------- GOOGLE is a great resource to find answers to questions like "how do i..." http://www.google.com/webhp?complete=1&hl=en -------- Upvote 0 Downvote
javascript at the end of your document (at the very end after your asp has finished processing) Code: <script language="javascript" type="text/javascript"> window.close(); </script> -------- GOOGLE is a great resource to find answers to questions like "how do i..." http://www.google.com/webhp?complete=1&hl=en --------
May 27, 2010 Thread starter #3 jasonhuibers Programmer Sep 12, 2005 290 CA CLOSED That did the trick THANKS Upvote 0 Downvote