文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>web.config

web.config

时间:2011-03-30  来源:轻典

1、定义数据库连接字符串:

 <connectionStrings>
<add name="conn" connectionString="Server=.;database=tiantianfu;uid=sa;pwd=123456"
providerName
="System.Data.SqlClient" />
</connectionStrings>

在程序中这样调用:

//using System.Web.Configuration;
String connStr = ConfigurationManager.ConnectionStrings["conn"].ConnectionString;
SqlConnection conn
= new SqlConnection(connstr);

2、定义一些项目中一些常量:

  <appSettings>
<add key="merId" value="yxkj"/>
<add key="key" value="778899"/>
</appSettings>

在程序中这样使用:

string merId = System.Configuration.ConfigurationManager.AppSettings["merId"].ToString();
string key = System.Configuration.ConfigurationManager.AppSettings["key"].ToString();
排行榜 更多 +
别惹神枪手安卓版

别惹神枪手安卓版

冒险解谜 下载
坦克战争世界

坦克战争世界

模拟经营 下载
丛林反击战

丛林反击战

飞行射击 下载