In my ASP.NET MVC application, I am utilizing AJAX calls from the Client Page using AngularJS service to perform CRUD operations through Controller Action methods.
While I have implemented ASP.NET form authentication for my MVC Pages, I am now looking to authenticate each AJAX call to ensure that only logged-in users can access the Controller methods. Any recommendations on how to achieve this?
Currently, I have included [Authorize] in my controller methods.