일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- replace()
- oracle
- c#
- jQuery
- 엑셀
- 단축키
- DataGrid
- aspnet
- 마이크로소프트
- 태그를 입력해 주세요.
- MSSQL
- ASP
- 리포팅서비스
- Excel
- 자바스크립트
- MS
- SSRS
- 비주얼스튜디오
- 이클립스
- Winform
- windows
- 오라클
- 윈폼
- IIS
- 윈도우
- CONVERT()
- javascript
- 프로시저
- attr()
- microsoft
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);