I'm clearly missing the concept of routing - for an experiment I've set the route as
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute("Standard",
"{devicetype}/{devicesub}/{language}/{culture}/{controller}/{action}/{id}",
new
{
devicetype = "pc",
devicesub = "def",
language = "en",
culture = "int",
controller = "Home",
action = "Index",
id = ""
}
);
my index page is in Views/pc/def/en/int/Home
when i run it i get an error searching for /Home/Index.aspx
it seems to still use the default structure and not my more complex one - what am i not understanding ?
thanks