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

急救!解决方案

2012-01-18 
急救!!!c:\inetpub\wwwroot\bycj\login.aspx.cs(56): 找不到类型或命名空间名称“Sqlconnection”(是否缺少

急救!!!
c:\inetpub\wwwroot\bycj\login.aspx.cs(56): 找不到类型或命名空间名称“Sqlconnection”(是否缺少 using 指令或程序集引用?)

我的名称空间中已经加了using System.Data.SqlClient;为什么还会出现上面的提示

[解决办法]
private void btnlogin_Click(object sender, System.EventArgs e) 

SqlConnection con=new SqlConnection ("server=CHINESE-11E9574;uid=sa;pwd=;database=khgx"); 
con.Open(); 
SqlCommand com=new SqlCommand("select count(*) from user where LoginID='"+txtusername.Text+"'and password='"+txtpassword+"',con"); 
int count=Convert.ToInt32(com.ExecuteScalar().ToString()); 
if (count>0) 

Response.Redirect("default.aspx"); 

con.Close(); 

楼主你是直接哪里拷的代码吧!

热点排行