I have a website hosted in Azure that uses Active Directory to prevent anyone from accessing it except for a few test users. Now I would like to expose a single page so that anyone can access it.
I've tried using an AllowAnonymous attribute on my Controller method, and I've tried setting
<allow users="*" />
in the web.config, but neither appears to have any effect. Is this possible, and if so, how?