zoukankan      html  css  js  c++  java
  • 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>

  • 相关阅读:
    浅析 Java 中的 final 关键字
    谷歌Java编程风格指南
    分布式事务之两阶段提交协议(2PC)and 使用事件和消息队列实现分布式事务
    零和博弈与木桶定律
    Executors类创建四种常见线程池
    软件设计的原则&101个设计模式-2011年04月25日 陈皓
    编程中的命名设计那点事-陈皓
    从面向对象的设计模式看软件设计- 2013年02月01日 陈皓
    SQL语句
    分布式事务
  • 原文地址:https://www.cnblogs.com/shouyeren/p/6150166.html
Copyright © 2011-2022 走看看