snowboardr
Programmer
Im am trying to get all QueryStrings and QueryParameter and put them into links on the page, so if a user changes a combo box all queryStrings stay in place. I have attempted this:
Function GetAllQ()
FOR EACH QueryString_Parameter IN Request.QueryString
Response.Write(QueryString_Parameter & "=" & Request.QueryString(QueryString_Parameter) & "&"
NEXT
End function
Is there a way to put all the QueryStrings and the parameter into a string so in my link I can just put the string in and any other QueryStrings I need to add to it?
I have tried putting
<%= ScriptName & "?" & GetAllQ()& bla bla, it doesnt work because i have to have Response.write in both places...so it errors ofcourse..
Thanks for any help on this question.
-Jason
Function GetAllQ()
FOR EACH QueryString_Parameter IN Request.QueryString
Response.Write(QueryString_Parameter & "=" & Request.QueryString(QueryString_Parameter) & "&"
NEXT
End function
Is there a way to put all the QueryStrings and the parameter into a string so in my link I can just put the string in and any other QueryStrings I need to add to it?
I have tried putting
<%= ScriptName & "?" & GetAllQ()& bla bla, it doesnt work because i have to have Response.write in both places...so it errors ofcourse..
Thanks for any help on this question.
-Jason