robin
|
| Posted: 11/23/2004, 1:58 AM |
|
hi
can any body tell me how to pass urls paramters to the new page based on two values
i know how to do for one value
i.e
Redirect = "Print.asp?id=" & id
but i want to do that for two values
id and one for value which i call as article id
and based on these values i want to pop up the print page
can any one suggest me how to do this
thanks in advance any help would be appreciated
regards
robin
|
|
|
 |
mrachow
Posts: 509
|
| Posted: 11/23/2004, 12:35 PM |
|
Hmm...,
multiple parameters are separated by &
Redirect = "Print.asp?id=" & id & "&article_id=" & article_id
Is this what you are looking for?
Regards,
Michael
_________________
Best regards,
Michael |
 |
 |
ruby
Posts: 8
|
| Posted: 11/24/2004, 12:27 AM |
|
yes
i got it thanks very much
robin
|
 |
 |
|