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 是个项目名,做一个登录模块
展开
 我来答
longge761001654b3
2009-10-01 · TA获得超过1067个赞
知道小有建树答主
回答量:356
采纳率:66%
帮助的人:184万
展开全部
第一个问题:看看你的那个Conn类的命名空间跟当前类的命名空间是不是一样的,如果不是一样的就要改成一样的
第二个问题:Login应该是窗体类的名称吧,但Login是命名空间,这样的话编译时被当做命名空间使用,所以报错的,要么把命名空间改下,要么把类名改下
来元彤8O
2009-10-01 · TA获得超过1452个赞
知道小有建树答主
回答量:759
采纳率:0%
帮助的人:259万
展开全部
Conn con = new Conn(this.textBox1.Text, this.textBox2.Text, this.textBox3.Text, this.textBox4.Text);
Conn是什么?你没有定义 也不懂你怎么写的

namespace Login//命名空间
Login login=new Login();
应该是 命名空间的冲突
是不是有个Login窗体
实例化的时候 发生冲突 把命名空间修改下
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式