C#编程找不到类型或命名空间名称“Conn”(是否缺少 using 指令或程序集引用?)
本人是编程的初学者,用VS2005照一本书写最简单的登录模块,没想到一开始就有问题:usingSystem;usingSystem.Collections.Generic...
本人是编程的初学者,
用VS2005照一本书写最简单的登录模块,没想到一开始就有问题:
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
{
public Form1()
{
InitializeComponent();
}
private void button2_Click(object sender, EventArgs e)
{
this.Close();
}
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("登录失败", "提醒");
}
}
}
}
错误 1 找不到类型或命名空间名称“Conn”(是否缺少 using 指令或程序集引用?) D:\VS\Login\Login\Form1.cs 28 13 Login
错误 3 “Login”是“命名空间”,但此处被当做“类型”来使用 D:\VS\Login\Login\Form1.cs 36 17 Login
请问这个问题怎么解决才好呢 展开
用VS2005照一本书写最简单的登录模块,没想到一开始就有问题:
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
{
public Form1()
{
InitializeComponent();
}
private void button2_Click(object sender, EventArgs e)
{
this.Close();
}
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("登录失败", "提醒");
}
}
}
}
错误 1 找不到类型或命名空间名称“Conn”(是否缺少 using 指令或程序集引用?) D:\VS\Login\Login\Form1.cs 28 13 Login
错误 3 “Login”是“命名空间”,但此处被当做“类型”来使用 D:\VS\Login\Login\Form1.cs 36 17 Login
请问这个问题怎么解决才好呢 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询