aspページにリピーターがあり、そのリピーターをコードビハインド(C#)にバインドしたい.c#ページには、リピーターをバインドする静的メソッドがあります.しかし、エラーが発生しています
「オブジェクトがオブジェクトのインスタンスに設定されていません」
私が持っている静的メソッドは..
[WebMethod(EnableSession = true)]
public static void LoadData()
{
Default oDefault = new Default();
Page p = new Page();
if ((List<AllPostInformation>)p.Session["AllNewsPostCollection"] != (List<AllPostInformation>)p.Session["CheckExistData"])
{
if ((List<AllPostInformation>)p.Session["AllNewsPostCollection"] != null)
{
List<AllPostInformation> o = new List<AllPostInformation>();
o = (List<AllPostInformation>)p.Session["AllNewsPostCollection"];
oDefault.rptNews.DataSource = o;
oDefault.rptNews.DataBind();
}
p.Session["CheckExistData"] = p.Session["AllNewsPostCollection"];
}
}
Please Help???