首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VB Dotnet >

请问怎么读取app.Config中的数据

2012-01-23 
请教如何读取app.Config中的数据?xmlversion 1.0 encoding utf-8 ?configurationconfigSection

请教如何读取app.Config中的数据
<?xml   version= "1.0 "   encoding= "utf-8 "   ?>
<configuration   >
    <configSections>
        <sectionGroup   name= "MySelfSettings "   type= "class1 ">
            <section   name= "Information "   type= "class2 "   />
        </sectionGroup>
    </configSections>
    <MySelfSettings>
        <Information>
            <mailaddress>
                <add   To= "To1@163.com "/>
                <add   To= "To2@163.com "/>
            </mailaddress>
        </Information>
    </MySelfSettings>
</configuration>

以上是app.Config中的格式,邮件地址还有增加的可能性,要求通过 <add   To= "ToX@163.com "/> 的方法来增加新邮件地址。
请教,怎么样才能在程序中读出 <mailaddress> 中的内容啊。


[解决办法]
你的配置文件不是符合标准的,如果要使用App.Config,一定要符合它的标准才能正确的使用。

建议使用一般的Xml文件来做为配置MailAddress的信息。
[解决办法]
http://www.dotnetxx.cn/shownews.aspx?id=25
[解决办法]
就用XMLdoument读取
System.Xml.XmlDocument mXmlDoc=new System.Xml.XmlDocument();
string file = "app.config ";
mXmlDoc.Load(file);

[解决办法]
<add key = "123 " value = "To1@163.com "/>
Dim appSettings As System.Collections.Specialized.NameValueCollection = _
System.Configuration.ConfigurationManager.AppSettings
str = appSettings( "123 ")
[解决办法]
用My.Setting吧,就是读写的app.Config

热点排行