i am writing a asp.net 2.0/vb.net site and i need to pass a client# to a page to pull up a client specific pdf. I don't want to allow the name.pdf to show in the address bar...because someone could just change the name of the pdf to view someone else's info. how do i hide the query string or the folder/folder/name.pdf from showing?
this is what i have as the page_Init...fires
Response.Redirect("
http://localhost/folder/folder/" & queryString)
the address bar will display:
http://www.site.com/folder/folder/name.pdfI want :
http://www.site.comIf i can use javascript of some sort to simply hide the address bar that would be great...or just clean up the url I don't care.
thanks in advance...
Start Free Trial