I know about MVC, But I don't have such experience with AngularJS. But both has controller and View.
To develope like e-commerce site, is it good choice to choose AngularJS to do filtering with brands, or color, etc.
I hope most of the e-commerce site are using SPA(Single page application).
When I read about AngularJS, it is also having controller as same as ASP.Net MVC, But the difference is AngularJS will perform in Client side and Asp.Net MVC will perform in Server side
Let's take an example. If my site having the images of mobile, when user do filter, it has to reload within a page but without reloading the entire page and bring the data from server. So to achieve this, after user select the filter, the Asp.Net's MVC's view having AngularJS will call the angularjs's controller, then that controller will call the mvc's controller method, and it will bring the records with certain amount of images and it will be posted back to the same page
Is it good scenario?. Can you give me your advice?.. Thanks