visual studio 2005下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.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace Login
{
public partial class Form1 : Form
{
private void button1_Click(object sender, EventArgs e)
{
Conn con = new Conn(this.textBox1.Text, this.textBox2.Text, this.textBox3.Text, this.textBox4.Text);
SqlConnection SqlConnection = con.creatConn();
SqlCommand cmd=new SqlCommand("SELECT COUNT(*)FROM Users WHERE UserName='''+this.textBox5.Text+'''and Password='''+this.textBox.Text+'''",SqlConnection );
string t=cmd.ExecuteScalar().ToString();
cmd.Connection.Close();
if(t=="1")
{
this.Visible =false ;
Login login=new Login();
login.ShowDialog();
}
else
{
MessageBox.Show ("登录失败","提醒");
}
}
private void button2_Click(object sender, EventArgs e)
{
this.Close();
}
}
}
调试的时候这两个错误是什么意思呢,怎么解决才好
错误 1 找不到类型或命名空间名称“Conn”(是否缺少 using 指令或程序集引用?)(项目里有类文件Conn.cs)
错误 4 “Login”是“命名空间”,但此处被当做“类型”来使用
Login 是个项目名,做一个登录模块 展开
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace Login
{
public partial class Form1 : Form
{
private void button1_Click(object sender, EventArgs e)
{
Conn con = new Conn(this.textBox1.Text, this.textBox2.Text, this.textBox3.Text, this.textBox4.Text);
SqlConnection SqlConnection = con.creatConn();
SqlCommand cmd=new SqlCommand("SELECT COUNT(*)FROM Users WHERE UserName='''+this.textBox5.Text+'''and Password='''+this.textBox.Text+'''",SqlConnection );
string t=cmd.ExecuteScalar().ToString();
cmd.Connection.Close();
if(t=="1")
{
this.Visible =false ;
Login login=new Login();
login.ShowDialog();
}
else
{
MessageBox.Show ("登录失败","提醒");
}
}
private void button2_Click(object sender, EventArgs e)
{
this.Close();
}
}
}
调试的时候这两个错误是什么意思呢,怎么解决才好
错误 1 找不到类型或命名空间名称“Conn”(是否缺少 using 指令或程序集引用?)(项目里有类文件Conn.cs)
错误 4 “Login”是“命名空间”,但此处被当做“类型”来使用
Login 是个项目名,做一个登录模块 展开
2个回答
展开全部
Conn con = new Conn(this.textBox1.Text, this.textBox2.Text, this.textBox3.Text, this.textBox4.Text);
Conn是什么?你没有定义 也不懂你怎么写的
namespace Login//命名空间
Login login=new Login();
应该是 命名空间的冲突
是不是有个Login窗体
实例化的时候 发生冲突 把命名空间修改下
Conn是什么?你没有定义 也不懂你怎么写的
namespace Login//命名空间
Login login=new Login();
应该是 命名空间的冲突
是不是有个Login窗体
实例化的时候 发生冲突 把命名空间修改下
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询