I have an ashx handler that I use to upload files from a flex page. I have been unable to extend forms authentication to protect the ashx file. Is there anyway to do this?
ASHX HTTP Handlers and forms authentication
3.1k Views Asked by System Down At
2
You can always check
context.Request.IsAuthenticated
in your .ashx file. (link)