Make the table values into links and use the QueryString to hold the values that you wish to pass... So that your ASP logic generates HTML that looks like this:
<td><a href='OtherPage.asp?MyValue='TheKey'>The Value</a></td>
I am trying to pass the value from CRN field to the Evaluation_Form_Detail page. I'm able to create a link to the page but not sure how I can get the CRN value over to the page once I click it.
Any help would be appreciated
my code
<td align="center"><a href="Evaluation_Form_Detail.asp"><%=(Recordset1.Fields.Item("CRN").Value)%></a></td>
then you do the same thing as i shown on page 1...and retrieve the value on page 2 using request.querystring...
and you can have something like this on the form
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.