<?xml version="1.0"?>
<!-- 
    注意: 除了手动编辑此文件以外,还可以使用
    Web 管理工具来配置应用程序的设置。可以使用
    Visual Studio 中的“网站”->“Asp.Net 配置”选项。
    设置和注释的完整列表在 
    machine.config.comments 中,该文件通常位于 
    \Windows\Microsoft.Net\Framework\v2.x\Config 中 
-->
<configuration>
  <!--数据库连接池  -->  <connectionStrings>
    <add name="test" connectionString="Data Source=192.168.1.201;User ID=terjoy; Password=terjoy;" providerName="System.Data.SqlClient"/>
  </connectionStrings>  <appSettings>
    <add   key= "ConnectionString "   value= "User ID=lr; Password=lr; Data Source=reap_168.168.0.210"   />
  </appSettings>
  
  
  <configSections>
    <section name="WorkflowRuntime" type="System.Workflow.Runtime.Configuration.WorkflowRuntimeSection, System.Workflow.Runtime, Version=3.0.00000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  </configSections>
  
  
  <WorkflowRuntime Name="WorkflowServiceContainer">
    <Services>
      <add type="System.Workflow.Runtime.Hosting.ManualWorkflowSchedulerService, System.Workflow.Runtime, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
      <add type="System.Workflow.Runtime.Hosting.DefaultWorkflowCommitWorkBatchService, System.Workflow.Runtime, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    </Services>
  </WorkflowRuntime>  <appSettings/>  <connectionStrings/>  
  
  <system.web>
    <!-- 
            设置 compilation debug="true" 将调试符号 
            插入已编译的页面。 但由于这会 
            影响性能,因此请只在开发过程
            中将此值设置为 true。 
        -->
    <compilation debug="false"/>
    <!--
            通过 <authentication> 节可以配置 ASP.NET 使用
            的安全身份验证模式,
            以标识传入的用户。 
        -->
    <authentication mode="Windows"/>
    <!--
            通过 <customErrors> 节
            可以配置在执行请求过程中出现未处理错误时
            应执行的操作。具体说来,开发人员通过该节 
            可以 配置要显示的 html 错误 
            页以代替错误堆栈跟踪。         <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm"/>
            <error statusCode="404" redirect="FileNotFound.htm"/>
        </customErrors>
        -->
    
    <httpModules>
        <add type="System.Workflow.Runtime.Hosting.WorkflowWebHostingModule, System.Workflow.Runtime, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" name="WorkflowHost"/>
    </httpModules>  </system.web></configuration>   在这里找连接池的时候出了错误 :无法将对象实例化
   /// <summary>
               /// Oracle读写数据访问对象
               /// </summary>
               public OracleDataAccess OracleWriterDataAccess
               {
                   get
                   {                       mwDA = new OracleDataAccess(System.Web.Configuration.WebConfigurationManager.ConnectionStrings["test"].ConnectionString);
                       return mwDA;
                   }
               }
     哪位大侠帮忙解决下 谢谢!