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. Link to comment Share on other sites More sharing options...
Webworldx Posted March 22, 2006 Report Share Posted March 22, 2006 window.open "URL" , "Window Name" , "attributes"? Link to comment Share on other sites More sharing options...
bnzenith 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> Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now