權限登入 web config設定

摘要:權限登入 web config設定

ASP.NET 2.0 表單身份認證心得筆記

 
 
如何解決登入頁面,圖片等資源都不能顯示的問題?
 
<location path="images">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>
把自己想要顯現的資源,像這樣一一加入即可。