일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ERD
- jdbc driver
- join
- 인젝션
- SPLIT
- sql업데이트
- wap
- tempDB
- WML
- sql랭킹
- inner join
- FileSystemObject
- instr
- 한글입력체크
- MSSQL보안
- VarType
- update
- array
- 자바기초
- 이미지세로길이
- xmldom
- XML
- javascript 한글입력체크
- JavaScript
- 이미지가로길이
- VARIABLE
- 정규식
- sql순위
- asp함수
- injection
- Today
- Total
목록플밍_ASP (78)
3초기억력
제목 : ASP - CAPICOM 활용한 암호화/ 복호화 ASP 코딩 암호화 내용 : CAPICOM 을 사용한 암호화/ 복호화 기법. CAPICOM.DLL 을 시스템 레지스트리에 설치를 한 후 사용가능하다. 웹 호스팅쪽에는 관리자에게 설치를 요구하거나 해야 사용할 수 있다. 서버호스팅을 직접하는경우는 서버 관리자에게 문의~~ 변수명 : strPassphrase의 값이 동일해야 복호화가 에러없이 진행된다. 출처 : http://www.aspheute.com/artikel/20020115.htm http://www.microsoft.com/ko-kr/download/details.aspx?id=25281 첨부한 CAPICOM.DLL 은 MS홈페이지에서 다운로드한것이고, SAMPLE_ENCRYPT.ZIP 파일..
제목 : 구글 뉴스 RSS 퍼오기 주요뉴스 | 정치 | 경제 | 사회 | 문화/생활 | 국제 | 정보과학 | 연예 | 스포츠 | 인기뉴스 . 내용 : news.google.co.kr 의 한국 뉴스를 rss에서 퍼오기 출처 : 자체제작
제목 : ASP - URL 파일 서버경로에 저장하기 ( binary, xmlDOM ) '****************************************************** '* '* URL 파일 서버경로에 저장하기 '* '******************************************************* Function remoteCopy(baseObj,tagetObj) 'baseObj : url 경로 'tagetObj : 서버 경로 'On Error Resume Next Dim xmlDOM Set xmlDOM = CreateObject("WinHttp.WinHttpRequest.5.1") xmlDOM.Open "GET", Trim(baseObj), False xmlDOM...
제목 : ASP - LoadPicture 없이도 이미지 파일 확장자, 가로세로 길이 구하기 Class ImageClass Private m_Width Private m_Height Private m_ImageType Private BinFile Private BUFFERSIZE Private objStream Private Sub class_initialize() BUFFERSIZE = 65535 ' Set all properties to default values m_Width = 0 m_Height = 0 m_Depth = 0 m_ImageType = Null Set objStream = Server.CreateObject("ADODB.Stream") End Sub Private Sub class_t..
제목 : 정규식 사용하여 html 본문의 A 태그 삭제하기 Dim tt_pattern : tt_pattern = "a|span|div|table|tbody|tr|td|ul|li|p|strong" 'html 태그 삭제할 것들 'html editor 로 넘어온 값 dim CONTENT : CONTENT = "어쩌구" CONTENT = ReplaceEndTag(RegExpReplace(tt_pattern, CONTENT, ""), tt_pattern) '****************************************************** '* '* Public Function RegExpReplace(Patrn, TrgtStr, RplcStr) '* '* RegExp.Replace() 메소드를 일..
제목 : ASP - ServerVariables 몽땅 나타내기
The VarType function returns a value that indicates the subtype of a specified variable. The VarType function can return one of the following values: 0 = vbEmpty - Indicates Empty (uninitialized) 1 = vbNull - Indicates Null (no valid data) 2 = vbInteger - Indicates an integer 3 = vbLong - Indicates a long integer 4 = vbSingle - Indicates a single-precision floating-point number 5 = vbDouble - In..
제목 : WinHttpRequest 의 getResponseHeader() 메소드
Examples using CDOSYSSending a text e-mail: Sending a text e-mail with Bcc and CC fields: Sending an HTML e-mail: Sending an HTML e-mail that sends a webpage from a website: Sending an HTML e-mail that sends a webpage from a file on your computer: Sending a text e-mail with an Attachment: Sending a text e-mail using a remote server: 출처 : http://www.w3schools.com/asp/asp_send_email.asp
제목 : VBScript VarType Function 8 2 5 1 0 11 내용 : The VarType function returns a value that indicates the subtype of a specified variable. (해석 : VarType 함수는 지정된 변수의 종류를을 나타내는 값. ) The VarType function can return one of the following values: (해석 : VarType 함수는 다음 값 중 하나를 반환할 수 있습니다 : ) 0 = vbEmpty - Indicates Empty (uninitialized) 1 = vbNull - Indicates Null (no valid data) 2 = vbInteger - Indicate..