How to keep the root path in the browser's addressbar
-
I have a main page in an asp.net web application and there are links (href) in the page that points to another pages with parameters. When a user clicks on one of the links, he can see the full url path including the page name and the parameters sent to it in the browser's address bar. Is there a way to keep the address bar always on the root path? I've seen such behavior in a few web sites. Thanks.
-
I have a main page in an asp.net web application and there are links (href) in the page that points to another pages with parameters. When a user clicks on one of the links, he can see the full url path including the page name and the parameters sent to it in the browser's address bar. Is there a way to keep the address bar always on the root path? I've seen such behavior in a few web sites. Thanks.
Yes BY URL Rewriting Check these links: http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx[^] http://msdn.microsoft.com/en-us/library/ms972974.aspx[^] Or YOu can also Use MVC3
-
Yes BY URL Rewriting Check these links: http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx[^] http://msdn.microsoft.com/en-us/library/ms972974.aspx[^] Or YOu can also Use MVC3
-
After reading this and searching i found that using frames is the thing i was looking for. Thanks for the help.
Always welcome dear :) If My post is helpfull to you then please give rating to my reply.
ANuj