我是c#的新手,所以有點卡在我認爲是一個非常簡單的模塊中。我只需要在下拉菜單中顯示數據,但在綁定時出現一些錯誤...或者甚至在綁定之前就會說出來。下面是我想do..I真的很抱歉,如果我做一個很簡單的錯誤,但我盡力&現在我想我需要一些指導..在下拉菜單中填充數據
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);
CustomService是不同項目中的一個單獨的助手類我已經使用Prod.Integration.DataModel爲該項目添加了dll;在頁面頂部... – Scorpio
我還需要爲它創建一個實例嗎? – Scorpio
好吧現在我沒有錯誤..它編譯得很好,但我沒有得到下拉列表中的數據?對不起,另一個問題 – Scorpio