jQuery with ASP.NET MVC and FormsAuthentication

jQuery with ASP.NET MVC and FormsAuthentication

Anyone know of a good framework that will pass the authorization ticket to the controllers when performing a jQuery post?

Right now if I use the [AUTHORIZE] attribute on the controllers to keep out unauthenticated users it doesnt work since the auth cookie does not get passed.

So even if I try to use something like HttpContext.User.Identity.IsAuthenticated inside my controller actions it wont work since again the cookie is not being passed as verified by Fiddler proxy.

Any guidance would be appreciated.

Vin