Chinaunix首页 | 论坛 | 博客
  • 博客访问: 140818
  • 博文数量: 98
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 1017
  • 用 户 组: 普通用户
  • 注册时间: 2011-06-11 13:22
文章分类

全部博文(98)

文章存档

2015年(25)

2014年(42)

2013年(31)

我的朋友

分类: C#/.net

2013-12-06 21:26:32





protected void Page_Load(object sender, EventArgs e)
    {
        string con_sqlserver = ConfigurationManager.AppSettings["sqlCon"].ToString();//获取配置文件中的数据库字符串信息
        Response.Write("SQL Server数据库连接字符串:"+con_sqlserver);//输出配置文件中的数据库字符串信息
        SqlConnection con = new SqlConnection(con_sqlserver);//创建数据库连接对象
        try
        {
            con.Open();//打开数据库连接
            Response.Write("");
            con.Close();//关闭数据库连接
        }
        catch (Exception ex)
        {
            Response.Write("");
        }
    }
阅读(234) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~