DJ메탈짱™의 Free Style

[ASP.NET] ComboBox Bind, A부터 Z까지, A to Z, Dictionary, char 본문

일(job)/MS(Microsoft)

[ASP.NET] ComboBox Bind, A부터 Z까지, A to Z, Dictionary, char

뽀&쏭 2015. 12. 21. 12:33



Dictionary<stringstring> dic = new Dictionary<stringstring>();

for (char c = 'A'; c <= 'Z'; c++)

{

dic.Add(c.ToString(), c.ToString());

}

 

// Booking Class  A to Z로 바인딩. 2013/07/23 by 최보현

this.cboBookingClass.FillData(dic.ToDataTable(), "Key""Value"string.Empty);