ASP生成JSON數據

<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>

<!--#include file="json.asp"-->

<!--#include file="inc/Conn.asp" -->

<%

response.ContentType="text/json"

dim j



'多重嵌套的JSON,要使用Dictionary才能實現

set j=new json

j.toResponse=false

set r=server.createobject("scripting.dictionary")

set b=server.createobject("scripting.dictionary")

set c=server.createobject("scripting.dictionary")

c.add "x",5

c.add "y",6

c.add "z",11

b.add "event","Mouse Click"

b.add "data",c

r.add "success",true

r.add "result",b

a=j.toJSON(empty,r,false)

response.write a



'記錄集轉爲Json

set i=new json

i.toresponse=false

set rs=server.CreateObject("adodb.recordset")

sqlstr="select top 5 * from producttype"

rs.open sqlstr,conn,0,1

v=i.toJson("result",rs,false)

rs.close

response.write v

%>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章