上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: using System;using System.IO;using System.Threading;using System.Web;/// /// 文件下载类/// public class FileDown{ public FileDown() { } /// /// 参数为虚拟路径 //... 阅读全文
posted @ 2014-10-22 16:06 m天下 阅读(1650) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Security.Cryptography; using System.Text;using System.IO;public class Encrypt{ public Encrypt() { } #region MD5加密 /// /// M... 阅读全文
posted @ 2014-10-22 16:04 m天下 阅读(3072) 评论(0) 推荐(0) 编辑
摘要: using System.Data;using System.IO;public static class CsvHelper{ /// /// 导出报表为Csv /// /// DataTable /// 物理路径 /// 表头 /// 字段标题,逗号分隔 public static bool... 阅读全文
posted @ 2014-10-22 16:02 m天下 阅读(571) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Data;using System.Reflection;using System.Collections;using System.Data.C... 阅读全文
posted @ 2014-10-22 16:00 m天下 阅读(467) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Drawing;public static class Captcha{ private static double[] addVector(double[] a, double[] b) { return new double[] { a[0] ... 阅读全文
posted @ 2014-10-22 15:59 m天下 阅读(934) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Web;using System.Collections;public class CacheHelper{ /// /// 获取数据缓存 /// /// 键 public static object GetCache(string Cache... 阅读全文
posted @ 2014-10-22 15:58 m天下 阅读(124) 评论(0) 推荐(0) 编辑
摘要: --通过脚本获取指定表的所有Insert语句。Create procedure [dbo].[sp_GetInsertSQL] @tablename_mask varchar(30) = NULL as begin -- NOTE: If, when executing in the Query ... 阅读全文
posted @ 2014-10-22 15:49 m天下 阅读(366) 评论(0) 推荐(0) 编辑
摘要: http://www.crifan.com/files/doc/docbook/web_scrape_emulate_login/release/html/web_scrape_emulate_login.html 阅读全文
posted @ 2014-10-22 15:43 m天下 阅读(208) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/zhijianliutang/p/4036599.html 阅读全文
posted @ 2014-10-22 15:40 m天下 阅读(133) 评论(0) 推荐(0) 编辑
摘要: public class JsonHelper { /// /// 。net对象序列化为Json对象 /// /// 。net对象类型 /// 需要序列化的。net对象 /// Json对象 public static string ToJson(T obj) { System.Web.Scri... 阅读全文
posted @ 2014-10-22 15:38 m天下 阅读(179) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页