Data can be carried from page to page using query strings and active
server pages. Strings are a quick and easy way of doing this. Passing
Information between pages has never been so simple.
Query Strings
Learn to use query strings with this quick concise tutorial.
Now Name a page name.asp and here is the source for it:
<%Response.Buffer=True%>
<%
Dim name
name=Request.QueryString("name")
%>
<html>
<head>
<title>You Picked <%=name%></title>
</head>
<body>
<font face="Arial">
The name you selected was <%=name%>
<br>
Now you can do this too! </font>
</body>
</html>
That's it, you are now using Query Strings!