본문 바로가기
반응형

Developer217

strpos / 문장내 단어 내포 확인 instr(인수1, 인수2, 인수3, 인수4)인수1 - 검색 시작위치인수2 - 검색될 문장인수3 - 검색할 단어인수4 - 대소문자 구분 여부 (디폴트 0)'금지어 필터링 가져온다 ㅇㅅㅇ)/ nSql = "select no_word from cms_board_noword where school_code='" & school_code & "'" Set nRs = oConn.execute(nSql)noword = false If nRs.BOF Or nRs.EOF Then Else no_word = Split(nRs("no_word"), ",") For i = 0 To UBound(no_word) 'response.write no_word(i) & " " If InStr(1, content, no_word(i).. 2017. 7. 19.
VBScript 문자형(string)으로 형변환 VBScript 문자형(string)으로 형변환 or Object형으로 형변환 VBScript 문자형으로 형변환 바꿔보란 얘기에 구글 검색하니 나오는게 아래와같다 VBScript : CStr() method will convert the value IN the object to a string. 2017. 7. 12.
5 Best JavaScript Frameworks in 2017 5 Best JavaScript Frameworks in 2017JavaScript popularity continues its rising. In 2016 we’ve witnessed such great changes, as AngularJS entire upgrade and introduction of Angular 2, ultimate dominating of jQuery that is applied on 96.5% of all JS sites, evolution of ECMAScript, two updates of Node.js in April and October accordingly, React finest hours, and even more. What to expect from 2017? .. 2017. 7. 4.
MSSQL 주석달기 MSSQL 주석달기 1. 주석추가 (add) --테이블 EXEC sp_addextendedproperty 'MS_Description', '테이블설명', 'user', dbo, 'table',테이블명 --컬럼들 EXEC sp_addextendedproperty 'MS_Description', '컬럼설명', 'user', dbo, 'table', 테이블명, 'column', 컬럼명 2. 주석수정 (update) --테이블 EXEC sp_updateextendedproperty 'MS_Description', '테이블설명', 'user', dbo, 'table',테이블명 --컬럼들 EXEC sp_updateextendedproperty 'MS_Description', '컬럼설명', 'user', dbo, '.. 2017. 4. 24.
반응형