全部博文(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-04-01 15:08:26
说明,这三个开源工程都是来自codeproject 1、TextControl 2、ZetaHtmlEditControl 3、FsRichTextBox 说明: 前两个是基于WebBroswer来实现。FsRichTextBox是基于richtextbox,没有图片导入及编辑功能。 目前三个开源版本都无法实现行间距的设置。待进一点研究。.........【阅读全文】
发布时间:2016-12-15 10:08:35
http://jingyan.baidu.com/article/20b68a88572a1c796cec6238.html......【阅读全文】
发布时间:2016-10-12 11:46:31
遍历获得一个实体类的所有属性名,以及该类的所有属性的值//先定义一个类:public class User{ public string name { get; set; } public string gender { get; set; } public string age { get; set; }}//实例化类,并给实列化对像的属性赋值:User u = new User();u.name = "ahbool";u.gender = ".........【阅读全文】
发布时间:2016-09-27 14:18:26
转自网址:http://www.cnblogs.com/wyBlog117/p/5308141.htmlC#.net模拟提交表单POST方法一、System.Net.WebClient WebClientObj = new System.Net.WebClient(); System.Collections.Specialized.NameValueCollection PostVars&nb.........【阅读全文】