config文件中声明变量

config文件中声明变量

本文介绍了我们可以在app.config文件中声明变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个需要得到连接到SQL Server的一个形式,我有一个下拉选择数据库列表,并执行类似的主键检查等业务但是,presently我的连接字符串是这样的:

I have a form which needs to get connected to the SQL Server and I have a drop down for selecting the list of databases and perform operations like primary key checking etc.But presently my connection string looks like this:

SqlConnection sConnection = new SqlConnection("Server=192.168.10.3;DataBase=GoalPlanNew;User Id=gp;Password=gp");

但是,除了从给定的数据库,我需要把它的变量,这样我可以把它连接到我从下拉列表中选择数据库。

But apart from the given Database I need to take it variable so that I can connect it to the Database I select from the dropdown.

你们可以帮帮我吧!

推荐答案

嗯,你可以声明变量像这样

Hmm you can declare your variables like this

<appSettings>
    <add key="SmtpServerHost" value="********" />
    <add key="SmtpServerPort" value="25" />
    <add key="SmtpServerUserName" value="******" />
    <add key="SmtpServerPassword" value="*****" />
</appSettings>

和念想。

string smtpHost = ConfigurationManager.AppSettings["SmtpServerHost"];
int smtpPort = Convert.ToInt32(ConfigurationManager.AppSettings["SmtpServerHost"]);

这篇关于我们可以在app.config文件中声明变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 17:31