Hi,
i have the application on environment in IIS 5.1 under "localhost/mvcapplication1"
The routing configuration is something like:
routes.MapRoute("mvc-default", "{controller}.mvc/{action}/{id}"
, new { controller = "Home", action = "Index", id = (string)null });
routes.MapRoute("Root", ""
, new { controller = "Home", action = "Index", id = (string)null });
When the page is routed via "Root", the links on the views will point to
http://localhost/mvcapplication1/MvcApplication1/Product.mvc
, which obviously it doesn't exist. However when the first "mvc-default" is used, it works well.
If the application is hosted under http://......./ would also work well.
any hints about how to solve it?
Thanks.