|
|
|
|
|
| | |
|
Active Server Pages help tutorial how to ASP Help ASP Tutorials ASP Programming ASP Code - ASP Free CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: How do I send diffrent variable values too same page ? |
From: |
Tony |
Date: |
7/19/1999 4:22:35 AM |
IP: |
202.4.7.18 |
passing parameters through links:
<a href="page1.asp?x=test&number=1">test</a>
the string after ? is the request string. To retrieve this parameters, you may code
<%= request.queryString("number") & " | " & request.queryString("x")%> into your page1.asp file.
this displays:
1 | test |
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|