Reputation: 117
I am developing an ASP.NET application. But i would like to hide the URL so user don't know on which page he or she standing. Is their any solution?
Upvotes: 0
Views: 1713
Reputation: 3800
Use Server.Transfer
. It doesn't change the URL.
Server.Transfer
happens without the browser knowing anything, the browser request a page, but the server returns the content of another.
Server.Transfer() should be used when:
Upvotes: 1
Reputation: 6408
There is no solution unless you can force the user to browse only from a restricted environment in which you can control what software is installed or run. Even if you force the user to use a specific browser, they could use a tool like Fiddler to see what URLs they are going to.
Upvotes: 0