• EAS使用中FineUI的配置


    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
      <configSections>
        <section name="eas" type="EAS.ConfigHandler,EAS.MicroKernel" />
        <section name="FineUI" type="FineUI.ConfigSection, FineUI" requirePermission="false" />
      </configSections>
      <eas>
        <configurations>
          <item name="Key" value="Value" />
        </configurations>
        <objects>
          <object name="DbProvider" assembly="EAS.Data.Provider" type="EAS.Data.Access.OracleProvider" LifestyleType="Thread">
            <property name="ConnectionString" type="string" value="Data Source=M;User Id=m;Password=sa;Integrated Security=No" />
          </object>
          <!--数据访问器-->
          <object name="DataAccessor" assembly="EAS.Data" type="EAS.Data.Access.DataAccessor" LifestyleType="Thread">
            <property name="DbProvider" type="object" value="DbProvider"/>
            <property name="Language" type="object" value="PLSqlLanguage"/>
          </object>
          <!--ORM访问器-->
          <object name="OrmAccessor" assembly="EAS.Data" type="EAS.Data.ORM.OrmAccessor" LifestyleType="Thread">
            <property name="DataAccessor" type="object" value="DataAccessor"/>
            <!--<property name="DataNotifier" type="object" value="DataNotifier"/>-->
          </object>
          <!--数据通知程序-->
          <!--<object name="DataNotifier" assembly="EAS.Data" type="EAS.Data.ORM.SocketBusDataNotifier" LifestyleType="Singleton">
            <property name="MessageBus" type="object" value="MessageBus"/>
          </object>-->
          <!--消息总线-->
          <!--<object name="MessageBus" assembly="EAS.MicroKernel" type="EAS.Sockets.Bus.SocketBus" LifestyleType="Singleton">
            <property name="Url" type="string" value="socket.tcp://127.0.0.1:6606/"/>
          </object>-->
          <!--查询语言-->
          <object name="PLSqlLanguage" assembly="EAS.Data.Provider" type="EAS.Data.Linq.PLSqlLanguage" LifestyleType="Thread"/>
          <!--直连服务桥-->
          <object name="ServiceBridger" assembly="EAS.MicroKernel" type="EAS.Services.DirectServiceBridger" LifestyleType="Singleton" >
            <property name="AutoLoad" type="bool" value="true"/>
          </object>-->
          <!--日志管理-->
          <object name="Logger" assembly="EAS.MicroKernel" type="EAS.Loggers.TextLogger" LifestyleType="Singleton" />
          <!--缓存访问器、旧版兼容-->
          <object name="CacheAccessor" assembly="EAS.Data" type="EAS.Data.ORM.CacheAccessor" LifestyleType="Singleton" />
        </objects>
      </eas>
    
      <FineUI DebugMode="true" />
      <system.web>
        <pages controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID">
          <controls>
            <add assembly="FineUI" namespace="FineUI" tagPrefix="f" />
          </controls>
        </pages>
        <httpModules>
          <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI" />
        </httpModules>
        <compilation debug="true" targetFramework="4.0" />
        <customErrors mode="Off" />
        <authentication mode="Forms">
          <forms name=".FORMS_AUTH" loginUrl="~/default.aspx" timeout="120" defaultUrl="~/main.aspx" protection="All" path="/" />
        </authentication>
        <authorization>
          <deny users="?" />
        </authorization>
      </system.web>
      <location path="icon">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
      <location path="res">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
      <location path="extjs">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
    </configuration>
  • 相关阅读:
    ASP.NET MVC 2 RC 2 发布
    [备忘]XCode快捷键
    ASP.NET MVC v2 Priview 2发布
    Senparc.com Google Sitemap Builder v1.0提供免费定制服务申请
    [备忘]SQL Server 字符集更改
    ASP.NET MVC脚手架辅助工具——MvcScaffoldTool v2.0版本发布,支持Area自动映射
    [备忘]SQL Server 2005数据库varchar插入中文出现乱码的一种可能及解决办法
    [备忘]苹果系统MAC OS X 10.5.6 (雪豹 snowleopard 10.5.6) 启用root方法
    准备好好看看《编程珠玑》
    格式化输入/输出
  • 原文地址:https://www.cnblogs.com/docomo/p/3732187.html
Copyright © 2020-2023  润新知