I have an asp application that I have several question pages on. Based on those questions, I will need to display another asp page. Within my "vbscript code" is there a way to link to another page without opening another IE window.
Currently I have coding like
If ..... Then
msgbox(" ")
Else
window.open "my.asp"
The "window.open" command actually opens the second window.
I want the second page to open like a link or a href command does in HTML(replaces the first window). Can anyone point me in the correct direction. Can this even be done in vbscript?
Thanks in advance for the help with this.
Thanks TBlack.
Currently I have coding like
If ..... Then
msgbox(" ")
Else
window.open "my.asp"
The "window.open" command actually opens the second window.
I want the second page to open like a link or a href command does in HTML(replaces the first window). Can anyone point me in the correct direction. Can this even be done in vbscript?
Thanks in advance for the help with this.
Thanks TBlack.