我有一个名为“_CLASS”的文件夹
在这个文件夹中,我有一个名为“SqlAccess”的类,它有一些方法。
现在我想在我的 .aspx.cs 页面中使用这个类,所以我必须为“SqlAccess”类添加引用命名空间,即“SQL”(命名空间)
但它给了我这样的错误
"The type or namespace name 'SQL' could not be found (are you missing a using directive or an assembly reference?)"
编辑
这是我的课程,在“_CLASS”文件夹下
namespace SQl
{
public class SqlAccess
{
//...... here is my code
}
}
或者我需要在“App_Code”文件夹下添加这个类?如果是,那为什么?