我在VS2008中创建了一个网站,在App_Code文件夹中添加了一个类
namespace irfulabs
{
[DataObject(true)]
public static class fooDALC
{
[DataObjectMethod(DataObjectMethodType.Select, true)]
public static IList<Screen> Getfoo()
{
//Do something
}
[DataObjectMethod(DataObjectMethodType.Insert, true)]
public static void Insert(Screen src)
{
//Do something
}
[DataObjectMethod(DataObjectMethodType.Update, true)]
public static void Update(Screen src)
{
//Do something
}
[DataObjectMethod(DataObjectMethodType.Delete, true)]
public static void Delete(Screen src)
{
//Do something
}
}
}
页面加载事件我调用方法
using irfulabs;
GridView1.DataSource = fooDALC.Getfoo();
GridView1.DataBind();
我收到错误消息“CS0103:当前上下文中不存在名称'fooDALC'”
答案 0 :(得分:0)
由于代码没有问题,在我的网站托管上设置应用程序文件夹和虚拟目录后,页面打开时没有错误。