I am using asp.net built in authentication and cannot display images on the built-in login.aspx page before logging in. I've tried adding the following block of code in Web.config as suggested in this post: Unauthenticated users can't see images in website
<location path="Images">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
I also tried
<location path="Content/Images">
and
<location path="Content">
but none of them worked.