Sorry I'm a newbie. How do I hyperlink to a new page using Vbscript? I was told I could do it with Java. Basically I writing a web tutorial, that when the user enters the proper info and hit's OK I want to go to the next page.
Help Pulease!
Printable View
Sorry I'm a newbie. How do I hyperlink to a new page using Vbscript? I was told I could do it with Java. Basically I writing a web tutorial, that when the user enters the proper info and hit's OK I want to go to the next page.
Help Pulease!
i'm not sure if i got your question right, but you can try this out:
hope this helps. :)Code:<%@Language=VBScript %>
<html>
<head><title>your title</title></head>
<body background="/images/bground.gif" bgcolor="#ffffff" text="#000000" marginheight="0" topmargin="0">
<%
Response.Write "<a href='http://yourURL.html/'>go to yourURL</a>"
%>
</body>
</html>