AngularJs Routing Does not working with cshtml files !!
if you want to use angularjs routing with mvc view (cshtml) file use both routing:angular routing + mvc routing
your routing code should be like this:
.when("/Home", { templateUrl: "/Home/Home", controller:"HomeController"});
where First Home
is Controller Nameand Second Home
is The Action Name
at the Mvc Controller.