首页 > Web开发 > 详细

后台 返回序列化的 JSon

时间:2016-01-05 00:07:35      阅读:211      评论:0      收藏:0      [点我收藏+]
 
string msg = context.Request["msg"];
            JavaScriptSerializer js = new JavaScriptSerializer();

            Dictionary<string, string> dic = new Dictionary<string, string>()
            {
                {"Time1", "2015.11.251111" }
            };
            dic.Add("Time", "2015.11.25");
            dic.Add("Data", "2013.11.10");

            string jsonstr = js.Serialize(new
            {
                Url = msg,
                People = new
                {
                    Name = "大头",
                    Age = "19"
                },
                Dic = dic
            });

            HttpContext.Current.Response.Write(jsonstr);
 

后台 返回序列化的 JSon

原文:http://www.cnblogs.com/demoC/p/5100538.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!