일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- wap
- MSSQL보안
- 이미지가로길이
- jdbc driver
- 한글입력체크
- 자바기초
- injection
- join
- VarType
- array
- SPLIT
- javascript 한글입력체크
- instr
- WML
- tempDB
- 정규식
- inner join
- 인젝션
- XML
- asp함수
- xmldom
- update
- VARIABLE
- JavaScript
- FileSystemObject
- sql업데이트
- 이미지세로길이
- sql순위
- sql랭킹
- ERD
- Today
- Total
목록플밍_ASP (78)
3초기억력
제목 : Using Classic ASP and URL Rewrite for Dynamic SEO Functionality 소스 : 내용 : 예제 소스 파일 : 출처 : http://blogs.msdn.com/b/robert_mcmurray/archive/2012/12/31/using-classic-asp-and-url-rewrite-for-dynamic-seo-functionality.aspx
제목 : ASP SHA256 암호화 소스 : 내용 : KISA 에서 배포한 내용에 class 화 추가. 예제 소스 파일 : 출처 : KISA
제목 : asp 자동검색어 - ajax 소스 : index.asp ----------------------------------------------------------------------------------------------------
제목 : asp에서 json 파일 호출하여 파싱. 테이블로 보여주기 소스 : Dim url : url = "http://localhost:9011/json_test/order.asp" Dim param : param = "" Dim objHttp Dim strJsonText Set objHttp = server.CreateObject("Microsoft.XMLHTTP") If IsNull(objHttp) Then Response.Write "서버 연결 오류. 관리자 문의바랍니다." Response.End End If objHttp.Open "Get", url, False objHttp.SetRequestHeader "Content-Type","text/plain" objHttp.Send param str..
제목 : asp - LDAP 사용하여 인증하기 방법 If Trim(request.querystring("error")) "" Then response.write "" & Trim(request.querystring("error")) & "" End If if submit = "Log In" then UserName = request.form("UserName") Password = request.form("Password") Domain = "mydomain.com" result = AuthenticateUser(UserName, Password, Domain) if result then session("sess_var") = request.form("UserName") response.redirect(..
제목 : ServerXMLHTTP 사용법 소스 : 출처 : 내용 : ServerXMLHTTP에 대한 질문과 대답 http://support.microsoft.com/kb/290761/ko response.redirect 에 대한 고찰 http://classicasp.aspfaq.com/general/what-do-i-need-to-know-about-response-redirect.html XML DOM 메소드 목록 http://msdn.microsoft.com/en-us/library/ms757828(v=vs.85).aspx getOption Method 설명 http://msdn.microsoft.com/en-us/library/ms753798(v=vs.85).aspx 예제 소스 파일 :
제목 : ADO DataType 목록 ADO DataType 목록 DataType Enum Value Access SQLServer Oracle adBigInt 20 BigInt (SQL Server 2000 +) adBinary 128 Binary TimeStamp Raw * adBoolean 11 YesNo Bit adChar 129 Char Char adCurrency 6 Currency Money SmallMoney adDate 7 Date DateTime adDBTimeStamp 135 DateTime (Access 97 (ODBC)) DateTime SmallDateTime Date adDecimal 14 Decimal * adDouble 5 Double Float Float adGUID 72..
제목 : ms-sql, image type 사용한 이미지파일 쓰기/읽기 소스 (dextuploadpro 사용) sql 파일은 ms sql 2008 에서 DB 명 정확히 입력하시고 쿼리 돌리세요. (상단 USE 부분) list.asp : 목록보기 write.html : 이미지 업로드 폼 write_ok.asp : DB 에 image type 으로 binary 저장 dbconn.asp : DB 연결. 본인 DB 접속계정 입력 내용 : ms sql 2008 에서 이미지파일을 image type 으로 저장하고, 해당 필드에서 binary 로 추출한 이미지를 별도의 페이지에서 ContentType 에 해당 이미지의 MimeType을 이용하여 뿌려준다. DextUpload Pro 평가판 사용함. 예제 소스 파일 :..
제목 : 전 페이지가 아래 POST 방식이 아닐때, 페이지 접근 차단 방법 내용 : get방식으로 injection 처리하거나 할때, 막는 방법. request.servervariables 중 request_method 로 post 를 추출할수 있다. lcase 는 소문자로 변환. ucase 는 대문자 변환 예제 소스 파일 : 출처 :