Every time I run a specific application, it shows No error found 
Does anyone know how to solve this?
I put the debugger in the page_load event in the default.aspx.cs file, but it is not called.
The following is the routing configuration:
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = "" }
);
I tried everything I could, but it does not work.
source
share