On my RouteConfig, I have Controller and Action name placed on the Default Route.
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Controller", action = "Index", id = UrlParameter.Optional }
);
While in page load, now the path is just 'http://geomig.com/'.
Is it possible to display full path, means 'http://geomig.com/Controller/Index' on page load.
Please help me.