PDA

Click to See Complete Forum and Search --> : How Do I hyperlink to a different page using Vbscript


partsplus29
Nov 1st, 2000, 05:57 PM
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!

Nov 2nd, 2000, 11:10 AM
i'm not sure if i got your question right, but you can try this out:


<%@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>


hope this helps. :)