Click here to Skip to main content
15,891,744 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to hide query string parameters over the browser?
Posted
Updated 17-Oct-10 23:01pm
v3

You could use an iframe:

<html>
<head>
  <title>Parent page with no query string parameters visible</title>
</head>
<body>
  <iframe src="mypage.aspx?x=y&a=b" />
</body>
</html>


Is that what you meant?
 
Share this answer
 
Comments
Dalek Dave 18-Oct-10 4:01am    
Good Call.
Dhanesh Dayalan 18-Oct-10 4:10am    
No, i am asking about HTTP Get and Post Method
Sandeep Mewara 18-Oct-10 4:22am    
Well, it might be one of the way but using an iframe to hide querystring does not looks good from development/performance point of view.
URL Rewriting...
Have a look at this article: URL Rewriting with ASP.NET[^]

Google for more if needed.
 
Share this answer
 
Comments
[no name] 18-Oct-10 5:10am    
Nice answer - thx
One way shown here[^].
Or you could just use session variables.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900