asp 문자열을 json 타입으로 가져오는 방법
Etc 2017. 4. 18. 10:29 |testJson 변수에 해당 문자열을 담고
아래쪽에서 화면에 출력해 보는 내용입니다.
한개씩 값을 가져와야할 경우는
Info.Get("lastname") 를 사용하면 됩니다.
이 부분을 사용하기 위해서는 json2.asp가 필요 합니다. (첨부확인)
[인클루드]
<!--#include virtual="json2.asp"-->
[본문]
'json test
testJson = "{""firstname"":""Fabio"", ""lastname"":""長尾""}"
'json 타입으로 값을 가져오는 방법
dim Info : set Info = JSON.parse(testJson)
Response.write( JSON.stringify(Info, null, 2) & vbNewline ) ' prints the text below:
Response.Write "<br/>"
Response.Write Info.Get("lastname")
set Info = nothing