I am a frustrated ASP programmer, and have the following problem: (with my ‘target page’)
My main page passes a variable to the target page, successfully, as the first condition evaluates as ‘true’:
If Request.ServerVariables(“QUERY_STRING”) <> “” Then ……
I then have a [GET DETAIL], i.e. Submit button on this target page, which MUST take the same variable and pass it to the code to get the detail…I can’t figure out how to do this, and the reason is, that if I process both the summary AND the detail, it will take a while, so I want to give the user the choice to generate the detail….So I need something like:
ELSE IF Request.ServerVariables(“QUERY_STRING”) condition “?” Then ….. Get Detail Code, passing the variable to this second generation of code? I hope I explained this clearly…Please HELP!! TIA