JavaScriptSerializer jss =new JavaScriptSerializer();
        context.Response.ContentType
="text/plain";
        Dictionary
<string, string> drow =new Dictionary<string, string>();
        drow.Add(
"name", "Wang");
        drow.Add(
"age", "24");
        context.Response.Write(jss.Serialize(drow));  

相关文章:

  • 2022-01-13
  • 2021-12-06
  • 2022-01-01
  • 2022-12-23
  • 2022-02-21
  • 2021-12-27
  • 2021-11-27
  • 2021-10-08
猜你喜欢
  • 2021-09-04
  • 2022-12-23
  • 2022-01-10
  • 2022-12-23
  • 2021-11-19
  • 2022-12-23
相关资源
相似解决方案