Allowing access to my Site.Css on my login form MVC

后端 未结 3 2050
清歌不尽
清歌不尽 2021-01-06 11:20

I need my css to show for my login page, but it\'s not showing at the moment. How would I go about allowing access to my login page with the css included? Im using forms aut

相关标签:
3条回答
  • 2021-01-06 11:35

    Stumbled across this, cause I needed the same thing. Here is a solution:

      <location path="Content">
        <system.web>
          <authorization>
            <allow users="*"/>
          </authorization>
        </system.web>
      </location>
    

    As is writer here (I used the link from the previous answer) this will give the unauthenticated user access to all the files in the Content folder, and the css file is in this folder. P.S. sorry guys, this is the same as the previous answer, just ignore this

    0 讨论(0)
  • 2021-01-06 11:55

    the <deny users="?"/> denies anonymous users from accessing the css file. (read here)

    so you'll need to put the following into your <configuration> block within web.config

    <location path="Content">
        <system.web>
          <authorization>
            <allow users="?"/>
          </authorization>
        </system.web>
      </location>
    

    you can read some more about this here

    0 讨论(0)
  • 2021-01-06 11:55

    I work this out by the followings steps: IIS Manager
    Authentication
    Right Click Anonymous Authentication.

    Switch to application pool identity

    0 讨论(0)
提交回复
热议问题