Hi, 
starting from a project webforms Asp.Net 3.5 first of all I change it to Asp.Net 4.0 in order to use the namespace System.Web.Routing, so I imported it.
Starting from the home that use a masterpage I changed one link just to have a try. 
<a href="search/shose/" title="" > <img class="borderBlack" src="immagini/b5.jpg" alt="" /></a> than I added the global.asax file and modified as follow:
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs) Me.RegisterRoutes(RouteTable.Routes) End Sub Sub RegisterRoutes(ByVal routeCollection As RouteCollection) routeCollection.Ignore("{resource}.css/{*pathInfo}") routeCollection.Ignore("{resource}.axd/{*pathInfo}") routeCollection.MapPageRoute("RouteForpage", "sear ...

Go to the complete details ...