ASP输出JSON格式 5
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<%
username="tom"
sex="男"
age="18"
response.write "姓名:"+username +"<br/>"+"性别:"+sex +"<br/>"+"年龄:"+age
%>
</body>
</html>
这段asp代码能够正常输入结果,请问如何将这结果以json的格式输出呢,谢谢 展开
2016-06-12 · 百度知道合伙人官方认证企业
ASP输出JSON格式是靠ASP.NET自带的JavaScriptSerializer来生成JSON数据的。
举例如下:
ArrayList eventList = new ArrayList();
for (int i = 0; i < 3;i++ )
{
Hashtable ht = new Hashtable();
ht.Add("eventid",i+1);
ht.Add("eventname","圣诞节");
ht.Add("eventdate","2012-12-25");
ht.Add("eventlocation","公司会议中心");
eventList.Add(ht);
}
JavaScriptSerializer ser = new JavaScriptSerializer();
String jsonStr=ser.Serialize(eventList);
Response.Write(jsonStr);
查看页面,可以看到返回的结果是JSON格式的数据如下:
直接写就行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%username="tom"
sex="男"
age="18"%>
{ "姓名": "<%=username%>", "性别":"<%=sex%>", "年龄": "<%=age%>" }
如果有特殊需要,可以在第二行加上Response.AddHeader("content-type","text/json")或者"application/json"