Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- javascript 한글입력체크
- join
- xmldom
- 한글입력체크
- update
- XML
- FileSystemObject
- VarType
- WML
- VARIABLE
- injection
- wap
- 자바기초
- sql랭킹
- array
- MSSQL보안
- 정규식
- 이미지가로길이
- ERD
- jdbc driver
- JavaScript
- sql업데이트
- instr
- sql순위
- 이미지세로길이
- inner join
- asp함수
- tempDB
- 인젝션
- SPLIT
Archives
- Today
- Total
3초기억력
classic asp json data request 본문
제목 : classic asp json send, receive
소스 :
Function BytesToStr(bytes)
Dim Stream
Set Stream = Server.CreateObject("Adodb.Stream")
Stream.Type = 1 'adTypeBinary
Stream.Open
Stream.Write bytes
Stream.Position = 0
Stream.Type = 2 'adTypeText
Stream.Charset = "utf-8"
BytesToStr = Stream.ReadText
Stream.Close
Set Stream = Nothing
End Function
If Request.TotalBytes > 0 Then
Dim lngBytesCount, jsonText
lngBytesCount = Request.TotalBytes
jsonText = BytesToStr(Request.BinaryRead(lngBytesCount))
Response.ContentType = "text/plain"
Response.Write "Your " & Request.ServerVariables("REQUEST_METHOD") & " data was: " & post
End If
내용 :
asp 페이지에서 json request 하는 방법
예제 소스 파일 :
출처 :
'플밍_ASP' 카테고리의 다른 글
classic asp 엑셀파일 생성시 헤더 (0) | 2017.12.26 |
---|---|
classic asp 테이블 row 중 소계, 합계, 총합계 구하는 방법(소스) (0) | 2017.12.14 |
성능 및 스타일 향상에 도움이 되는 28가지 ASP 팁 (0) | 2017.12.12 |
classic asp 에서 업로드컴포넌트 dll 파일 생성법 및 사용법 (0) | 2017.11.07 |
asp recursive 트리 구조 (0) | 2016.11.29 |
Comments