web.config

来自「ASP.NET Web Forms Techniques」· CONFIG 代码 · 共 19 行

CONFIG
19
字号
<configuration>

  <system.web>

    <!-- change following to true to use cookie-less sessions -->
    <!-- sessionState cookieless="false" / -->

    <!-- specify that we will use Forms authentication -->
    <!-- note that this does not apply to cookie-less version -->
    <authentication mode="Forms">
      <forms name="XroxCars" path="/" loginUrl="secure/login.aspx"
             protection="All" timeout="30" >
      </forms>
    </authentication>

  </system.web>

</configuration>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?