int count = Convert.ToInt32(comd.ExecuteScalar()); 这句总是提示错误
usingSystem.Data;usingSystem.Configuration;usingSystem.Data.SqlClient;stringun=TextBo...
using System.Data;
using System.Configuration;
using System.Data.SqlClient;
string un = TextBox1.Text.Trim();
string pa = TextBox2.Text.Trim();
SqlConnection comm = new SqlConnection(ConfigurationManager.ConnectionStrings["testConnectionString"].ToString());
string sql = string .Format("select COUNT(*) from log where UName=‘{0}’,and UPassword=‘{1}’",un,pa);
SqlCommand comd = new SqlCommand(sql, comm);
comm.Open();
int count = Convert.ToInt32(comd.ExecuteScalar());
comm.Close();
if (count > 0)
{
Response.Redirect("Default2.aspx");
}
else {
Response.Write("错误!");
}
“/text”应用程序中的服务器错误。
'‘' 附近有语法错误。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.Data.SqlClient.SqlException: '‘' 附近有语法错误。
源错误:
行 31: SqlCommand comd = new SqlCommand(sql, comm);
行 32: comm.Open();
行 33: int count = Convert.ToInt32(comd.ExecuteScalar()); 就是这句话
行 34: comm.Close();
行 35: if (count > 0) 展开
using System.Configuration;
using System.Data.SqlClient;
string un = TextBox1.Text.Trim();
string pa = TextBox2.Text.Trim();
SqlConnection comm = new SqlConnection(ConfigurationManager.ConnectionStrings["testConnectionString"].ToString());
string sql = string .Format("select COUNT(*) from log where UName=‘{0}’,and UPassword=‘{1}’",un,pa);
SqlCommand comd = new SqlCommand(sql, comm);
comm.Open();
int count = Convert.ToInt32(comd.ExecuteScalar());
comm.Close();
if (count > 0)
{
Response.Redirect("Default2.aspx");
}
else {
Response.Write("错误!");
}
“/text”应用程序中的服务器错误。
'‘' 附近有语法错误。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.Data.SqlClient.SqlException: '‘' 附近有语法错误。
源错误:
行 31: SqlCommand comd = new SqlCommand(sql, comm);
行 32: comm.Open();
行 33: int count = Convert.ToInt32(comd.ExecuteScalar()); 就是这句话
行 34: comm.Close();
行 35: if (count > 0) 展开
3个回答
展开全部
你的Sql语句有语法错误,你可以监视 Sql 变量,查看它的值。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string sql = string .Format("select COUNT(*) from log where UName=‘{0}’,and UPassword=‘{1}’",un,pa);
错误在这句
单引号要用半角英文。。。
错误在这句
单引号要用半角英文。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你将int count=Convert.ToInt32(comd.ExecuteScalar().tostring());看看
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询