私はC#が初めてなので、非常に単純なモジュールだと思っていたものに少し行き詰まりました。ドロップダウンメニューにデータを表示する必要があるだけですが、バインド中にエラーが発生します...またはバインドする前でも言います。これが私がやろうとしていることです..非常に単純な間違いをしている場合は本当に申し訳ありませんが、最善を尽くしました..
CustomService.cs
public partial class CustomService
{
public List<Code> GetDepartment(bool activeOnly)
{
List<Code> retVal = new List<Code>();
---some code----
return retVal;
}
}
ProgramList.ascx.cs
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
List<Code> dept = new List<Code>CustomService.GetDepartment(true);
ddlDepartment.DataSource = dept;
ddlDepartment.DataBind();
}
}
//error an object reference is required for an nonstatic field, method or Property CustomService.GetDepartment(true);