I have a very simple routing:
routes.MapRoute( "Default", "{controller}/{action}/{id}",parameters new { controller = "Home", action = "Index", id = "" } );
The problem is that it works great in all simple cases, for example www.xxx.yy/pages/filter/test ". As soon as I add a point". "to the {id} part, it fails, return" Resource not found. "This occurs when www.xxx.yy/pages/filter/test.
Any suggestions?
asp.net-mvc routing
michal zygula
source share