0
You have asked 3 questions. Let's take them one by one.
1. Why to use Angularjs in ASP.net?
Angularjs is a Java Script library used to build responsive Single Page Applications (SPA). It should be used as it's one of the most popular platform to develop SPA.
2. Where to use?
It is used in conjunction with HTML tags in ASP.NET page.
3.what purpose it solve?
It solves the purpose of easily and efficiently developingresponsive Web Apps.
If this answers your question, please close the thread by accepting the answer.
Accepted 0
AngularJS is a complete framework so inside an ASP.net project you can use it for:
1. Creating Single Page Applications for faster loading of pages.
2. Making backend API calls
3. Organized code using MVC structure.
One restriction with AngularJS is that when we need to render large amount offrequentlychanging data that along with AngularJS we can use ReactJS for faster rendering as it used Virtual DOM and provides component based development.