Code
public void BindSelectCategory() {
Category bll = new Category();
IList<CategoryInfo> category = bll.GetCategory();
DropDownListSearch.Items.Add(new ListItem("所有商品","all"));
for (int i = 0; i < category.Count; i++) {
DropDownListSearch.Items.Add(new ListItem(category[i].CategoryName, category[i].CategoryId));
}
}