ASP.NET与SQL Server 2005数据库不能正常连接
在ASP.NET中写了一句代码stringsql=string.Format("selectcount(*)fromuserswhereLoginName={0}andP...
在ASP.NET中写了一句代码
string sql = string.Format("select count(*) from users where LoginName = {0} and Password = {1}", int.Parse(txtLoginId.Text.Trim()), txtLoginPwd.Text.Trim());
在SQL Server 2005 中写的是
create table users
(
UserID int primary key identity(1001,1) not null,
LoginName varchar(30) not null,
UserName varchar(30) not null,
Password varchar(8) not null
)
数据库users表里有数据,但是在登录窗口填写了用户名和密码后却是报错,这是怎么回事啊 展开
string sql = string.Format("select count(*) from users where LoginName = {0} and Password = {1}", int.Parse(txtLoginId.Text.Trim()), txtLoginPwd.Text.Trim());
在SQL Server 2005 中写的是
create table users
(
UserID int primary key identity(1001,1) not null,
LoginName varchar(30) not null,
UserName varchar(30) not null,
Password varchar(8) not null
)
数据库users表里有数据,但是在登录窗口填写了用户名和密码后却是报错,这是怎么回事啊 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询