|
|
|
|
|
| | |
|
Active Server Pages ASP programs help tutorial tutorials routine routines jobs listserve mailinglist bulletin board bulletin boards programming snippet snippets CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: Passing info to ASP template trough hyperlinks. |
From: |
Marco |
Date: |
4/16/1999 11:41:24 AM |
IP: |
195.99.47.73 |
Hiya,
yes, that would work.
<a href="myasp.asp?id">text</a>
You would now get the ID by using ...
CID = Request.Querystring
... in the myasp.asp
It would be better to actually use ...
<a href="myasp.asp?id=id">text</a>
... that way you can pass on more then 1 variable without having to parse anything.
now you would get the ID by using ...
CID = Request.Querystring("id")
... Hope it helps!
Greetings, Marco |
Previous Message
Follow Up - Re: It doesnt work - Timo Tuunainen 4/22/1999 4:29:54 AM
|
|
|
|
|
|
|
|
|
|
|
|