Tagged Questions
1
vote
1answer
106 views
How to enable anonymous access to custom app page
I'm trying to make a custom application page which can be viewed by anonymous users. So far I've:
Inherited the code behind from UnsecuredLayoutsPageBase
Overriden AllowAnonymousAccess to always ...
0
votes
2answers
79 views
Access denied even though AllowAnonymousAccess is true
I have a weird problem.
I'm making an application page public using
protected override bool AllowAnonymousAccess
{
get
{
return true;
}
}
I use the same ...