Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.