Hello igal,
I am not finding the parameter "AppRelativeCurrentExecutionFilePath".
Could u help me here. I have pasted the code taht I wan to test.
----Code-----
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}",
new { controller = "Controller1", action = "Action1", id = UrlParameter.Optional } // Parameter defaults
);
}
-----------Code--------------
What could be the test for this. I have tryed many times, but still not working.
Your help will be appriciated.