You cannot directly point on the .cshtml file but you can point to a templateUrl that points to an MVC route.
Considering you are using the default MVC route {controller}/{action}/{id?}, for example:
var app = angular.module('ProjectTrackingModule', ['ngRoute', 'ui.bootstrap']);app.config(function ($routeProvider) { $routeProvider .when("/Home", { templateUrl: "/Home/Home", //points to an mvc route controller=Home, action=Home controller:"HomeController" }) .otherwise({redirectTo:"/Home"})});
But in order for it to work the MVC Action should be in the controller also.
public class HomeController : Controller{ [HttpGet] public ActionResult Home() { return View(); }}
also your anchor tags points to an incorrect href, it should have the hashbang (#)
<a href="/#/Home">Home</a><a href="/#/Projects">Projects</a>