300x250
ㅁ JSON for ASP
aspjson 은 VBScript ASP 환경에서 JSON 구문 출력을 해 준다.
aspjson is JSON serializer for VBScript based ASP server technology.
It uses VBScript's primitive types except Object and Array types. jsObject and jsArray classes stand JSON Object and Array dynamically on server side. These classes derive core functionality from jsCore.
aspjson supports nested types for block of buildings, such as jsObject instances can contain Numbers, Strings, Nulls, Arrays and other primitive types, jsArray instances can contain these jsObject instances or all of the primitive types.
Hello World!
sample
<!--#include file="JSON_latest.asp"-->
<%
Dim member
Set member = jsObject()
member("name") = "Tuğrul"
member("surname") = "Topuz"
member("message") = "Hello World"
member.Flush
%>
output
{"name":"Tu\u011Frul","surname":"Topuz","message":"Hello World"}
JSON_latest.asp 파일은 아래에서 받을 수 있다.
http://code.google.com/p/aspjson/downloads/detail?name=JSON_2.0.4.asp
300x250
'개발 > classic asp' 카테고리의 다른 글
classic asp 에서 Response 4총사 - Write, Flush. Clear, End (0) | 2014.02.17 |
---|---|
jQuery | asp 에서 jQuery $.ajax 예제 (0) | 2014.02.13 |
asp | asp 에서 숫자 세자리마다 점(콤마) 찍기 (0) | 2014.02.12 |
asp | URL 에서 도메인(domain) 정보 가져오기 (1) | 2014.02.12 |
ASP를 사용하여 특정 페이지에 SSL 요구 - asp 에서 SSL Redirect (0) | 2014.01.23 |