Hi Jesikka,
We would like to inform you that the issue “Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily” would have occurred if controller/action name mismatch with the RouteConfig file and the sample project URL. So please ensure that the controller/action name is as same as in the project URL and RouteConfig file. Please find the following image to specify the project URL: Specify the controller name and action name in the RouteConfig file as in the below code:
<code>
[BundleConfig.cs]
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Account", action = "Signin", id = UrlParameter.Optional }
);
}
}
</code>
Still if you face the issue please share the issue reproducible sample so that we can isolate the exact issue.
Please let us know if you have further queries,
Regards,
Kasithangam