반응형
private void initDropList()
{
DBDataControl EnvilCategory = new DBDataControl();
DataSet categoryList = EnvilCategory.GetCateGoryList(WebConfig.ConStr, "1");
categoryDropList = categoryList.Tables[0].DefaultView;
drpListCategory.DataSource = categoryDropList;
drpListCategory.DataTextField = "CATEGORY_NAME";
drpListCategory.DataValueField = "CATEGORY_SEQ";
drpListCategory.SelectedIndex = GetCategoryIndex(this.categoryOffset);
drpListCategory.DataBind();
// 행 추가하기 (Select a Category)
ListItem selectItem = new ListItem();
selectItem.Text = "Select a Category";
selectItem.Value = "0";
drpListCategory.Items.Insert(0, selectItem);
drpListCategory.SelectedIndex = 0;
}
'프로그래밍 > ASP.NET' 카테고리의 다른 글
특정한 기간동안 티저페이지로 이동하는 소스, 캐쉬설정 주의 (0) | 2013.10.18 |
---|---|
Enterprise Library 사용시 SQL의 UNIQUEIDENTIFIER 타입 파라미터로 지정 (0) | 2013.10.16 |
ListBox (0) | 2013.10.16 |
MultiView, View - 로그인 로그아웃 블럭에 유용 (0) | 2013.10.16 |
Panel (0) | 2013.10.16 |