AuthorMessage
Meka][Meka
Unstopable
Posts: 700

little example of forwarding params.
You can add parameters to a URL:
Code:

<a href="welcome.asp?fname=Meka&lname=Meka">
Go to Welcome Page</a>

And retrieve the values in the "welcome.asp" file like this:
Code:

<%
fname=Request.querystring("fname")
lname=Request.querystring("lname")
response.write("<p>Hello " & fname & " " & lname & "!</p>")
response.write("<p>Welcome to my Web site!</p>")
%>

more examples will come later ;)
-/Meka
NeiSep
Ametuar
Posts: 93

querystring could be use to many things like build up a meny very easy.