longmatch
Programmer
- Nov 1, 2001
- 406
Dear All:
I would like to pass the value into an ASP page, for querying. But the value can not pass. I would like to know why. My code is:
Do While Not rsSummary.EOF
Response.Write _
"<TR ALIGN=CENTER>" & _
" <TD>" & "<a href='ProcedureDetails.asp?Details='" & rsSummary("category"
& ">" & rsSummary("category"
& "</a>" & "</TD>" & _
" <TD>" & rsSummary("NoProcedure"
& "</TD>" & _
"</TR>"
rsSummary.MoveNext
Loop
When I used following code to retrieve the value, The "details" variable is empty. Please show me why it did not work.
details = trim(request("Details"
)
Response.Write (Details)
HAIJUN
I would like to pass the value into an ASP page, for querying. But the value can not pass. I would like to know why. My code is:
Do While Not rsSummary.EOF
Response.Write _
"<TR ALIGN=CENTER>" & _
" <TD>" & "<a href='ProcedureDetails.asp?Details='" & rsSummary("category"
" <TD>" & rsSummary("NoProcedure"
"</TR>"
rsSummary.MoveNext
Loop
When I used following code to retrieve the value, The "details" variable is empty. Please show me why it did not work.
details = trim(request("Details"
Response.Write (Details)
HAIJUN