ASP生成JSON数据

来源:互联网 发布:淘宝怎么查号截图 编辑:程序博客网 时间:2024/05/28 05:19

下文中用到的json.asp见上一篇文章

<%@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
%
>

0 0
原创粉丝点击