I need to convert an existing ASP.NET website to a spa website for most of it. Therefore, I am evaluating Angularjs for this project. I read numerous articles and posts describing the use of AngularJS with ASP.NET Web Api, but not where it is used in conjunction with ASP.NET MVC.
So, I am wondering if only the landing page will be processed by ASP.NET MVC and then the rest will be processed through AngularJS? Also, when configuring the routes of the AngularJS application, they definitely need to return some views. Are these views returned from ASP.NET MVC actions or should they be just AngularJS templates that will be retrieved from the server. If they are Angularjs templates that seem to be the right choice, then how will the data in these templates be expanded? Of course, I can crack all of this, but some examples or best practices will be greatly appreciated.
source share