C# 未能找到类型或命名空间名称“DataInsert”(是否缺少using指令集或程序集引用)

我做的是向数据库中添加数据。usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;... 我做的是向数据库中添加数据。

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;

namespace 例17._2向数据库中添加数据
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
ClsDB.ClsDBControl DBC = new DataInsert.ClsDB.ClsDBControl();
string strsql = "insert into tb_people values('" + this.textBox1.Text.Trim().ToString() + "','" + this.textBox2.Text.Trim().ToString() + "','" + this.textBox3.Text.Trim().ToString() + "')";
if (DBC.AmendDB(strsql))
{
MessageBox.Show("OK");
}
}
}
}
以上是那个按钮的代码,为什么会有那个错误啊?求大神指导哪。
展开
 我来答
学派
2014-05-27 · TA获得超过446个赞
知道小有建树答主
回答量:465
采纳率:100%
帮助的人:259万
展开全部
DataInsert.ClsDB.ClsDBControl()

要么拼写错误,要么没有引用命名空间,这两项都没问题的话,就是没引用程序集
百度网友8cac7d3
2014-05-27 · TA获得超过223个赞
知道小有建树答主
回答量:379
采纳率:0%
帮助的人:124万
展开全部
不是写的很明确吗?这个类没有找到。
更多追问追答
追问
就像要用sqlConnection或者sqlCommand,需要使用using system.data.sqlclient;指令一样。这个DataInsert或者DataUpdate需要使用什么using指令啊?
追答
要看这个类的命名空间是什么,不过看上去想是自己写的类,不是系统带的。
如果DLL文件引用了,把鼠标点到类上,会有提示的。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式