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

Developer 2008 链接SQL2005数据库不报错,但是显示不出来数据内容,该怎么解决

2012-03-27 
Developer 2008 链接SQL2005数据库不报错,但是显示不出来数据内容SqlConnection conn new SqlConnection

Developer 2008 链接SQL2005数据库不报错,但是显示不出来数据内容

  SqlConnection conn = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings["conn"]);
  string cmdstr = "select * from us";
  conn.Open();
  Response.Write("连接成功!");
  SqlCommand command = new SqlCommand(cmdstr,conn);
  SqlDataReader reader = command.ExecuteReader();
  if (reader.Read())
  {
  Response.Write(reader["user_name"]);
  } 

  另外在 developer 2008 "数据库资源管理器"中找不到服务器,刷新几次也没用。

[解决办法]
没用过,关注!!

热点排行