.NET开发

本类阅读TOP10

·NHibernate快速指南(翻译)
·vs.net 2005中文版下载地址收藏
·【小技巧】一个判断session是否过期的小技巧
·VB/ASP 调用 SQL Server 的存储过程
·?dos下编译.net程序找不到csc.exe文件
·通过Web Services上传和下载文件
·学习笔记(补)《.NET框架程序设计(修订版)》--目录
·VB.NET实现DirectDraw9 (2) 动画
·VB.NET实现DirectDraw9 (1) 托管的DDraw
·建站框架规范书之——文件命名

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
.Net配置文件常用配置说明

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

 

配置文件内容如下:

<?xml version="1.0" encoding="utf-8" ?>

<configuration>

     <configSections>      

         <section name="mySection" type="System.Configuration.NameValueSectionHandler"/>

         <section name="mySingleTagSection" type="System.Configuration.SingleTagSectionHandler"/>

         <section name="myDictionarySection" type="System.Configuration.DictionarySectionHandler"/>

 

         <sectionGroup name="mySections">

              <section name="mySection1" type="System.Configuration.NameValueSectionHandler"/>

              <section name="mySection2" type="System.Configuration.NameValueSectionHandler"/>

         </sectionGroup>

     </configSections>

    

    <mySection>

         <add key="key1" value="value1" />

        <add key="key2" value="value2" />

    </mySection>

   

    <mySingleTagSection setting1="value1" setting2="value2" setting3="value3" />

 

     <myDictionarySection>

         <add key="DictionarySectionKey1" value="DictionarySectionValue1"/>

         <add key="DictionarySectionKey2" value="DictionarySectionValue2"/>

         <add key="DictionarySectionKey3" value="DictionarySectionValue3"/>

     </myDictionarySection>

       

     <mySections>

         <mySection1>

              <add key="mySection1_key1" value="mySection1_value1" />

              <add key="mySection1_key2" value="mySection1_value2" />         

         </mySection1>

         <mySection2>

              <add key="mySection2_key1" value="mySection2_value1" />

              <add key="mySection2_key2" value="mySection2_value2" />

         </mySection2>

     </mySections>

    

     <appSettings>

        <add key="appkey1" value="appvalue1" />

        <add key="appkey2" value="appvalue2" />   

    </appSettings>

</configuration>

代码片断如下:

private static void TestAppSettings()

{

     Console.WriteLine("TestAppSettings ...");

 

     NameValueCollection config = ConfigurationSettings.AppSettings;

    

     Console.WriteLine("value1:" + config["key1"]);

     Console.WriteLine("value2:" + config["key2"]);

 

     Console.WriteLine();

}

private static void TestSection()

{

     Console.WriteLine("TestSection ...");

 

     NameValueCollection config ;

     config = (NameValueCollection)ConfigurationSettings.GetConfig("mySection");

     Console.WriteLine("value1:" + config["key1"]);

     Console.WriteLine("value2:" + config["key2"]);

 

     Console.WriteLine();

}

 

private static void TestSingleTagSection()

{

     Console.WriteLine("TestSingleTagSection ...");

 

     IDictionary dic ;

     dic = (IDictionary)ConfigurationSettings.GetConfig("mySingleTagSection");

     Console.WriteLine("value1:" + dic["setting1"]);

     Console.WriteLine("value2:" + dic["setting2"]);

     Console.WriteLine("value3:" + dic["setting3"]);

 

     Console.WriteLine();

}

 

private static void TestDictionarySection()

{

     Console.WriteLine("TestDictionarySection ...");

 

     IDictionary dic ;

     dic = (IDictionary)ConfigurationSettings.GetConfig("myDictionarySection");

     Console.WriteLine("DictionarySectionValue1:" + dic["DictionarySectionKey1"]);

     Console.WriteLine("DictionarySectionValue2:" + dic["DictionarySectionKey2"]);

     Console.WriteLine("DictionarySectionValue3:" + dic["DictionarySectionKey3"]);

 

     Console.WriteLine();

}

 

private static void TestSectionGroup()

{

     Console.WriteLine("TestSectionGroup ...");

 

     NameValueCollection config1 ;

     NameValueCollection config2 ;

     config1 = (NameValueCollection)ConfigurationSettings.GetConfig("mySections/mySection1");

     config2 = (NameValueCollection)ConfigurationSettings.GetConfig("mySections/mySection2");

 

     Console.WriteLine("mySections/mySections1/value1:" + config1["mySection1_key1"]);

     Console.WriteLine("mySections/mySections1/value2:" + config1["mySection1_key2"]);

 

     Console.WriteLine("mySections/mySections2/value1:" + config2["mySection2_key1"]);

     Console.WriteLine("mySections/mySections2/value2:" + config2["mySection2_key2"]);

 

     Console.WriteLine();

}

 




相关文章

相关软件