VS2008 で Web サイトを作成し、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: The name 'fooDALC' does not exist in the current context」というエラー メッセージを受け取りました。