• FineUI配置文件


    <configuration>
      <configSections>
        <section name="FineUI" type="FineUI.ConfigSection, FineUI" requirePermission="false" />
      </configSections>
      <!-- 可用的配置项(这里列的都是默认值):
          Language="zh_CN"
          AjaxTimeout="120"
          EnableAjax="true"
          Theme="Neptune"
          FormMessageTarget="Qtip"
          FormOffsetRight="0"
          FormLabelWidth="100"
          FormLabelSeparator=":"
          IconBasePath="~/res/icon"
          EnableAjaxLoading="true"
          AjaxLoadingType="default"
          CustomTheme=""
          CustomThemeBasePath="~/res/theme"
      -->
      <FineUI DebugMode="false" />
      <appSettings />
      <connectionStrings />
      <system.web>
        <pages controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID">
          <controls>
            <add assembly="FineUI" namespace="FineUI" tagPrefix="f" />
          </controls>
        </pages>

        <httpRuntime maxRequestLength="102400 " />
        <customErrors mode="Off" />
        <compilation debug="true" targetFramework="4.5" />
        <!--
        <authentication mode="Forms">
          <forms name=".ASPXFORMSAUTH" loginUrl="~/default.aspx" timeout="120" defaultUrl="~/main.aspx" protection="All" path="/"/>
        </authentication>
        <authorization>
          <deny users="?"/>
        </authorization>
        -->
      </system.web>
      <!--
      <location path="res.axd">
        <system.web>
          <authorization>
            <allow users ="*" />
          </authorization>
        </system.web>
      </location>
      -->

      <system.webServer>
        <modules>
          <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/>
        </modules>
        <handlers>
          <add name="FineUIResourceHandler" verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI"/>
        </handlers>
      </system.webServer>
     
    </configuration>

  • 相关阅读:
    JavaSE学习笔记(二十六)—— IO流概述&字节流
    JavaSE学习笔记(二十五)—— File类
    JavaSE学习笔记(二十四)—— 异常
    JavaSE学习笔记(二十三)—— Collections工具类
    JavaSE学习笔记(二十二)—— Map集合
    JavaSE学习笔记(二十一)—— Set集合
    Gin框架
    Go gRPC Hello World
    Go
    Gin框架
  • 原文地址:https://www.cnblogs.com/shouyeren/p/6150166.html
Copyright © 2020-2023  润新知