全部博文(1293)
发布时间:2016-03-08 18:40:42
1、推送文本消息JSON { "touser": "oa-GIuOu4MQ4eVc0P-wrvy6aFECs", "msgtype": "text", "text": { "content": "Hello ,I am David Lee!" } } 2、推送图片消息JSON .........【阅读全文】
发布时间:2016-03-14 17:47:57
1、利用.NET自身的JavaScriptSerializer 需要添加System.Web.Extensions.dll 添加方法见: http://blog.chinaunix.net/uid-25498312-id-5675200.html using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web.Script.Serialization; namespace TestJSON .........【阅读全文】
发布时间:2016-03-14 14:28:51
开发JSON相关程序要用到System.Web.Script.Serialization。如何添加? 在C盘搜索中输入:System.Web.Extensions.dll 在解决方案中引用:System.Web.Extensions.dll 发现出现一个叹号! 找到项目属性,将框架改为.NET Framwork4.0 叹号被消掉! 参考处理文本: “创建的一个window窗体程序,需要引用到Sy.........【阅读全文】