摘要: using System;using System.Collections.Concurrent;using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.Http;using Syste... 阅读全文
posted @ 2015-09-25 11:24 mysuper 阅读(764) 评论(0) 推荐(0) 编辑
摘要: webConfig 里面配置缓存时间 [OutputCache(CacheProfile = ("Long"))][OutputCache(Duration = 60,Locatio... 阅读全文
posted @ 2015-09-11 17:54 mysuper 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 示例程序是同步套接字程序,功能很简单,只是客户端发给服务器一条信息,服务器向客户端返回一条信息;这里只是一个简单的示例,是一个最基本的socket编程流程,在接下来的文章中,会依次记录套接字的同步和异步,以及它们的区别。下面是示例程序的简单步骤说明服务器端:第一步:用指定的端口号和服务器的ip建立一... 阅读全文
posted @ 2015-09-09 14:57 mysuper 阅读(471) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Reflection;using System.Text;using System.Threading.Tasks... 阅读全文
posted @ 2015-07-31 15:30 mysuper 阅读(720) 评论(0) 推荐(0) 编辑
摘要: function clone(myObj) { if (typeof (myObj) != 'object') return myObj; if (myObj == null) return myObj; v... 阅读全文
posted @ 2015-07-13 18:08 mysuper 阅读(180) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2015-07-13 17:36 mysuper 阅读(51) 评论(0) 推荐(0) 编辑
摘要: (double)decimal.Round(decimal.Parse((planVoSt.TotalCompleteAmount / planVoSt.TotalUserCount).ToString()), 1); 阅读全文
posted @ 2015-07-01 14:32 mysuper 阅读(483) 评论(0) 推荐(0) 编辑
摘要: Provider根据实际EXCEL的版本来设置,推荐使用ACE接口来读取。需要Access database Engine。注意修改注册表以下两项的值为0。否则导入EXCEL当单元格内字符长度超过255会发生截断现象!!!HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\O... 阅读全文
posted @ 2015-06-08 15:50 mysuper 阅读(406) 评论(0) 推荐(0) 编辑
摘要: public class UserObserver { //观察者 public interface IUserObserver { void UserNotify(object anObject); } ... 阅读全文
posted @ 2015-05-28 11:42 mysuper 阅读(102) 评论(0) 推荐(0) 编辑
摘要: public static class MySerializeXmlHelper { static MySerializeXmlHelper() { } private static object _lock = new object(); ... 阅读全文
posted @ 2015-05-28 11:26 mysuper 阅读(173) 评论(1) 推荐(0) 编辑