返回json

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();
}

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