Reputation: 3295
Hope this is the best place to put this question. I am working on a web application.Where any user can check detail of other user by a link. currently this is the link for test
http://www.contractgenies.com/Snapshotprofile.aspx?ViewRef=test09last099826
it is working fine but
Problem :
I want to show this as :
http://www.contractgenies.com/test09last099826
without query string or page name.
Is this possible or not please let me know.
Upvotes: 0
Views: 1946
Reputation: 1541
You can use UrlRewriting mechanism to achieve this job.
If you are going to use ASP.Net MVC then use routing mechanism.
Upvotes: 4