码迷,mamicode.com
首页 > Web开发 > 详细

返回json

时间:2017-06-06 15:49:57      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:end   scripts   pts   tty   json   str   string   asc   type   

private void WriteJson(object o)
{
JavaScriptSerializer serializer = new JavaScriptSerializer();
Context.Response.ContentType = "text/json";
string str = serializer.Serialize(o);
logger.Info(" 结果: " + str);
Context.Response.Write(str);
Context.Response.End();
}

返回json

标签:end   scripts   pts   tty   json   str   string   asc   type   

原文地址:http://www.cnblogs.com/wdnrsjd/p/6951576.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!