|
dzirkelb1 -> RE: Select problem (4/1/2005 10:38:30)
|
I think I'm following you...you have 8 select statements (or somewhere around that) and you would like to pass the values of those select statements to a next page via hyperlink...if that is the case, then you will have to define each variable within the select statement to pass...it is like this: on a spooky diet, after all the 2nd include file (include1), you will place: <% var1=fp_field(fp_rs,"field1") var2=fp_field(fp_rs,"field2") var3=fp_field(fp_rs,"field3") var4=fp_field(fp_rs,"field4") %> You will do that for each select statement for variables you would like to create; however, make sure no duplicate variable names are created (in the above, you would replace items in bold) Then, in you hyperlink you would do: <a href="link.asp?var="& var1 & var2 & var3 & var4 you would have to modify that to be specefic to your needs...is that what you are wishing to do?
|
|
|
|