how to hide the query string in url
-
Hi all, I am using ASP in that i want to know how to hide the query string part in the address bar. For example, I have defined a hyperlink as
so, in browser i want to show only http://mywebsite.com/sumpage.asp and hide the rest of the part. How can i do it ?? Thanks in advance..
-
Hi all, I am using ASP in that i want to know how to hide the query string part in the address bar. For example, I have defined a hyperlink as
so, in browser i want to show only http://mywebsite.com/sumpage.asp and hide the rest of the part. How can i do it ?? Thanks in advance..
You can't. You can perhaps encrypt it, but there is no way to hide it.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
You can't. You can perhaps encrypt it, but there is no way to hide it.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
Your basic problem is finding an encryption algorithm that doesn't contain forbidden characters. What are you actually trying to achieve ? If something should be kept secret, you should not send it to the client at all. Wanting to encrypt your query string makes me feel that your design is broken to start with.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
Hi all, I am using ASP in that i want to know how to hide the query string part in the address bar. For example, I have defined a hyperlink as
so, in browser i want to show only http://mywebsite.com/sumpage.asp and hide the rest of the part. How can i do it ?? Thanks in advance..
Try reading this article Tamper Proof Query String[^] by Daniel Hac[^]. It works a treat! Rob
.NET Developer @ FactoryMaster Ltd "Software for TOUGH businesses"
-
Hi all, I am using ASP in that i want to know how to hide the query string part in the address bar. For example, I have defined a hyperlink as
so, in browser i want to show only http://mywebsite.com/sumpage.asp and hide the rest of the part. How can i do it ?? Thanks in advance..