Hi there,
You can simply pass them as QueryString variables, like this:
<a href="Page2.asp?Param1=Bla&Param2=BlaBla">Click Me</a>
Then on Page2.asp, you can do this:
Dim Param1
Dim Param2
Param1 = Request.QueryString("Param1")
Param2 = Request.QueryString("Param2")
Note that the first parameter is separated by a ? while subsequent parameters are separated by a &.
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
|