일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- javascript
- MSSQL
- SSRS
- DataGrid
- 오라클
- IIS
- c#
- 엑셀
- windows
- replace()
- aspnet
- oracle
- CONVERT()
- 비주얼스튜디오
- Excel
- jQuery
- 이클립스
- attr()
- 마이크로소프트
- 자바스크립트
- microsoft
- 윈폼
- Winform
- 태그를 입력해 주세요.
- 리포팅서비스
- 단축키
- ASP
- 프로시저
- MS
- 윈도우
- Today
- Total
목록CHECK (3)
DJ메탈짱™의 Free Style
// PaperCompany여부에 따라 ValidatorControl 필수입력 제어하기. function fn_PaperCompanyCheck() { if ($('#xmlCHKPAPERCOM').is(':checked')) { ValidatorEnable(document.getElementById(''), false); } else { ValidatorEnable(document.getElementById(''), true); } } RequiredValidatorControl을 위해 내장된 함수를 사용 - ValidatorEnable
select * from v$version where banner like 'Oracle%'; ========================================================Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production
Keys key; // 입력된 값이 Enum으로 Convert가 정상적으로 되는지 확인. if (Enum.TryParse(ShortKey, out key)) { // Keys Enum에서 사용가능한 값인지 확인 if (!Enum.IsDefined(typeof(Shortcut), ShortKey.Replace("Control","Ctrl").Replace(",", ""))) { //{0}는 사용하실 수 없는 키조합 입니다. this.Warning(this.GetResourceValue("CMM_008", "[" + ShortKey + "]")); this.ShortKey = ""; return false; } } else { //{0}의 형식이 일치하지 않습니다. this.Warning(this.GetRe..