The tsp.querystring.class was designed to allow you to easily pass values from page to page without your users being able to see the querystrings. it is actualy a fairly simple class that relies on hidden forms to do most of the work.
I have also included some simple string encoding into the scripts so if a user happens to look at the html source code, they still cant make out the values you are passing. ( i wouldnt however recomend passing anything to sensitive )
the redirect took me a while to figure out, and is the best i could come up with. i recomend you use the intrinsic asp response object redirect method if your not passing querystrings. my method actually makes two trips to the server for each redirect. the (1st trip) passes your values via the actuall (asp) redirect and querystring methods to a self auto submitting (2nd trip) hidden form in the top of the class to redirect and hide your values .
File List:
tsp_querystring/
0b
tsp_querystring/link.asp
427b
tsp_querystring/readme.txt
1Kb
tsp_querystring/redirect.asp
309b
tsp_querystring/result.asp
430b
tsp_querystring/tsp.querystring.class.asp
2Kb
Similar code
A CAPTCHA For Classic ASP
(Popularity: ) : This application is a light weight CAPTCHA solution designed to prevent spam from being submitted via forms on blog type ... Absolutely Easy Password Protected Pages
(Popularity: ) : Very minimalist code for password protected pages. (passwords are not database driven). Just copy and paste ! Put your files ...