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>

  • 相关阅读:
    Linux下使用cut切割有规则的列文本
    注解相关
    修改Feign数据解析,由jackson改为fastjson,同时解决fastjson中Content-Type问题
    Spring Data JPA整合REST客户端Feign时: 分页查询的反序列化报错的问题
    Aliyun STS Java SDK示例
    GIT : IDEA切换到某个tag
    [LeetCode] 351. Android Unlock Patterns 安卓解锁模式
    QSpinBox 和 QSlider 联合使用方法
    Qt 控件随窗口缩放
    [LeetCode] 350. Intersection of Two Arrays II 两个数组相交之二
  • 原文地址:https://www.cnblogs.com/shouyeren/p/6150166.html
Copyright © 2011-2022 走看看