일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Excel
- IIS
- jQuery
- MS
- 마이크로소프트
- c#
- 비주얼스튜디오
- CONVERT()
- 태그를 입력해 주세요.
- windows
- 윈도우
- 리포팅서비스
- DataGrid
- 자바스크립트
- replace()
- MSSQL
- aspnet
- 엑셀
- 윈폼
- 오라클
- Winform
- SSRS
- microsoft
- 이클립스
- 프로시저
- javascript
- ASP
- 단축키
- attr()
- oracle
Archives
- Today
- Total
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:33Dictionary<string, string> dic = new Dictionary<string, string>();
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);