Guest Xignal76 Posted February 27, 2006 Report Share Posted February 27, 2006 I have a short vbscript that does a http_obj=createObject("Microsoft.XMLHTTP") which returns some XML. I use mid() against the responseText to obtain a portion of it called a "sessionID."I then concatenate the sessionID into a new string in order to launch a related application:MyURL = http://servername/applicationname?Action=S...essionID=" + SessionIDMy question: What is a good way to to launch MyURL as a new page or window, from either within the vbscript or from the ASP page?Thanks. Quote Link to post Share on other sites
Webworldx 0 Posted March 22, 2006 Report Share Posted March 22, 2006 window.open "URL" , "Window Name" , "attributes"? Quote Link to post Share on other sites
bnzenith 0 Posted March 25, 2006 Report Share Posted March 25, 2006 one method is=============<a href= "http://servername/applicationname?Action=S...essionID=" + SessionID" target="_blank">click me to open in new page</a> Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.