views:

22

answers:

1

Hi,

My web app url is e.g. http://domainname/Search/SearchPage.aspx?SearchID=1-0-0-2-3. I have rewriten the url as follows The user may see the following url http://domainname/Search/SearchPage.aspx/1-0-0-2-3/DFDF/FDFDF My code is only conerned with the SearchID. Is there a way that i can ignore anything that comes after /1-0-0-2-3 , since i do not use it anywhere.

A: 

If you have ASP.NET 4 available, you can check out the new Routing API: http://msdn.microsoft.com/en-us/library/dd329551.aspx

bgever