These forums are read-only and considered to be an archive. Please use the new Community for future interaction and posts.

Querystring Problem

I have been able to set up the dynamic folder part fine.  However, when I Upload, Create, Rename any files or folders I lose the querystring when the Attachments.asp page refreshes.  Basically, when I load the page I have "Attachments.asp?ID=123345", after I add or modify a file/folder then the page refreshes but returns "Attachments.asp".  

Does anyone know what part of the code I need modify so that my querystring carries over?
Jason 6/11/2004 4:29 PM
Rather than response.redirect("page.asp") you need response.redirect("page.asp?variable=" & variablename) to keep it in the address. Or if you want, you cna set a session variable.
Travis Howle 6/12/2004 3:00 PM