1

I am doing a restructuring because there are a lot of bugs in my app. I have come to the point where i am very confused whether I should either drop AngularJS or ASP.Net MVC. Does anyone have any suggestions?

Problem now is i think we use CSHTML files, and from what i have heard, angular can't read cshtml files to route. I have tried to use ASP.net to navigate from views, but in reality shouldn't i rather use Angular Routing? If so why should i continue with ASP.Net MVC? I could hack it, but i feel that if i continue hacking my way around it will be hard to maintenance code and develop new features.

Rakesh Chand
  • 3,105
  • 1
  • 20
  • 41

1 Answers1

1

It depends on the type of application you are working on mainly Angularjs is used in developing well structured Single based applications (SPA) using MVVM pattern.However,your project can combine both angular and Asp.net MVC which is called in this case Mini SPA application where each cshtml may contain many angular views routing inside same page will use angular routing while routing between different cshtml (MVC) pages will use MVC routing.

AhmedHamad
  • 131
  • 5