I have a page (results.asp) which has table at the top, and then a frameset below it. Results.asp gets passed loads of parameters apended to the URL, but I need to pass these variables into one of the frames (results_main.asp). How can I do this?
When I name the frameset, I need to give the "src" attribute as "results_main.asp" and then all the variables appended onto the end.
"Request.ServerVariables("URL"
" will give me just "results.asp", and not the rest of the URL string that is created. Is there anyway I can quickly access the full URL without having to do a request.querystring on every element and then re-building the string?
When I name the frameset, I need to give the "src" attribute as "results_main.asp" and then all the variables appended onto the end.
"Request.ServerVariables("URL"