I have an asp.net application with a single user for administration portion of it.
This is how my authentication looks like
<authentication mode="Forms">
<forms loginUrl="login.aspx" defaultUrl="AdminPage.aspx" timeout="2000">
</forms>
</authentication>
and this is how my authorization looks like for a txt file
<location path="txtFile.txt">
<system.web>
<authorization>
<deny users="?"/>
<allow users="User1"/>
</authorization>
</system.web>
</location>
<location path="AdminPage.aspx">
<system.web>
<authorization>
<deny users="?"/>
<allow users="User1"/>
</authorization>
</system.web>
</location>
Now the problem is that I want only the User1 to be able to read this file . When I test this on my own pc everything is correct and if I write the address of this file I will be redirected to loginpage . The problem occures when I upload my webApp on host the authorization for txtFile does not work and everybody is able to read the content of it .
PS : The authorization for AdminPage.aspx works correct.