菜鸟求助!!!C#登录问题,请各位大大们帮忙解答,感激不尽,具体如下

usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Da... using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Configuration;//首先在资源管理器的"引用"里引用System.configuration文件
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
string sqlnn = "Server=localhost;Integrated Security = True; database=学生成绩管理系统";
SqlConnection conn = new SqlConnection();
string sqlstr = "select count(*) from 用户信息表 where(username='" + textBox1.Text + "'and password='" + textBox2.Text + "')";
conn.ConnectionString = sqlnn;
SqlCommand cmd = new SqlCommand(sqlstr, conn);
conn.Open();
int flag = System.Convert.ToInt32(cmd.ExecuteScalar());
conn.Close();
if (textBox1.Text == "")
{
MessageBox.Show("用户名不能为空");
}
else if (textBox2.Text == "")
{
MessageBox.Show("密码不能为空");
}
else
{
if (flag > 0)
{
Form2 form2 = new Form2();
form2.Show();
this.Hide();
}
else
{
MessageBox.Show("用户名或密码错误!");
}
}
}
}
}
展开
 我来答
带泪的紫藤花
2011-05-24 · TA获得超过2665个赞
知道小有建树答主
回答量:486
采纳率:100%
帮助的人:197万
展开全部
晕。。你没有把连接语句关联到sqlconnection连接类里面,怎么能连接的上呢
把SqlConnection conn = new SqlConnection();
改成SqlConnection conn = new SqlConnection(sqlnn);就好了。。
追问
改了之后还是那样啊,求解释
追答
string sqlnn = "Server=localhost;Integrated Security = True; database=学生成绩管理系统";
SqlConnection conn = new SqlConnection(sqlnn); //此处关联
conn.Open(); //连接的打开放在这里
string sqlstr = "select count(*) from 用户信息表 where(username='" + textBox1.Text + "'and password='" + textBox2.Text + "')";
SqlCommand cmd = new SqlCommand(sqlstr, conn);
int flag = System.Convert.ToInt32(cmd.ExecuteScalar());
if (textBox1.Text == "")
{
MessageBox.Show("用户名不能为空");
}
else if (textBox2.Text == "")
{
MessageBox.Show("密码不能为空");
}
else
{
if (flag > 0)
{
Form2 form2 = new Form2();
form2.Show();
this.Hide();
}
else
{
MessageBox.Show("用户名或密码错误!");
}
}
}
}
conn.Close();//连接的关闭是放在最后的,你再试试,如果还没成功,就是你sql sever的问题啦、、
还有一个问题,楼下说的,在and前面敲几个空格~~~
举个栗咨
2011-05-24 · TA获得超过144个赞
知道小有建树答主
回答量:365
采纳率:50%
帮助的人:76万
展开全部
好久没做,都看懵了,我这有个以前做的登录界面,你有时间自己看看~
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

public partial class login : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
protected void ibtnCancel_Click(object sender, ImageClickEventArgs e)
{
txtUserName.Text = "";
txtPassword.Text = "";
}
protected void ibtnLogin_Click(object sender, ImageClickEventArgs e)
{
//判断数据库中是否存在与输入用户名一致的记录
//如果数据库中存在相应的用户名
//判断密码是否与输入密码一致
//如果一致,则进入管理页面
try
{
DataClassesDataContext db = new DataClassesDataContext();
tbFamily fa = db.tbFamily.Single(p => p.UserName == txtUserName.Text);
if (fa.UserPassword == txtPassword.Text)
{
//加载登录信息
Session["UserName"] = txtUserName.Text;
//保存登录日志
Response.Redirect("jtcygl.aspx");
}
else
{
Response.Write("<script>alert('您输入的用户名或密码不正确');</script>");
}

}
catch
{
Response.Write("<script>alert('您输入的用户名或密码不正确');</script>");
}

}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
powerbuildre
2011-05-24 · TA获得超过319个赞
知道小有建树答主
回答量:278
采纳率:0%
帮助的人:275万
展开全部
string sqlstr = "select count(*) from 用户信息表 where(username='" + textBox1.Text + "'and password='" + textBox2.Text + "')";语句里面where、and关键字前后要有空格!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ericfalcon
2011-05-24 · TA获得超过219个赞
知道小有建树答主
回答量:312
采纳率:0%
帮助的人:195万
展开全部
数据库连接字符串有问题。。
最好用sa登录方式连接。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
喆慧72
2011-05-24
知道答主
回答量:14
采纳率:0%
帮助的人:2.1万
展开全部
好复杂
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式