I got a SharePoint Project which already works with anonymous Access. Now I added an aspx-page which is used for streaming images. That aspx-page is added into a virtual directory Layouts\

Whenever I try to access that aspx-file Sharepoint does not allow anonymous access to that page even though all other pages viewable by the user work fine with anonymous access. Is there any way to change this behaviour?

link|improve this question

67% accept rate
Which behaviour you mean? Your behaviour? I hope that there is a way! – Malcolm Frexner Oct 11 '11 at 12:14
feedback

1 Answer

up vote 4 down vote accepted

Two requirements must be met:

  1. the page needs to inherit from the class UnsecuredLayoutsPageBase,
  2. the property AllowAnonymousAccess needs to be overridden to return true.
link|improve this answer
Thanks! Worked! – Ole Albers Oct 11 '11 at 12:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.