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)
展开
 我来答
qinweiqw84
2011-09-09
知道答主
回答量:5
采纳率:0%
帮助的人:6.3万
展开全部
你的Sql语句有语法错误,你可以监视 Sql 变量,查看它的值。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
doukou123
2011-09-09 · TA获得超过106个赞
知道答主
回答量:98
采纳率:50%
帮助的人:48.8万
展开全部
string sql = string .Format("select COUNT(*) from log where UName=‘{0}’,and UPassword=‘{1}’",un,pa);
错误在这句
单引号要用半角英文。。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yiwei1120
2011-09-09
知道答主
回答量:27
采纳率:0%
帮助的人:17.7万
展开全部
你将int count=Convert.ToInt32(comd.ExecuteScalar().tostring());看看
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式