摘要:
public static class JsonConvert { public static string ObjectToJson(object obj) { DataContractJsonSerializer serializer = new DataContractJsonSerializer(obj.GetType())... 阅读全文
摘要:
参考: https://www.cnblogs.com/edisonchou/p/4848131.html https://www.cnblogs.com/willick/p/4177977.html#header03 1、线程 System.Threading.Thread类 Console.Wr 阅读全文
摘要:
原文:http://www.ijquery.cn/?p=866 下载demo 其实使用方法很简单,只需要在头部加载一个JS就可以。如下: 1、视频引用方法(type="video/mp4",type="video/ogg",type="application/x-shockwave-flash") 阅读全文
摘要:
1、多文件下载并压缩 1 public class DownLoadZip 2 { 3 public static void Download(IEnumerable<string> files, string zipFileName, HttpResponse response) 4 { 5 6 阅读全文
摘要:
原文:http://blog.csdn.net/w200221626/article/details/52169250 json 文件 格式: 1 { 2 "total": 1, 3 "page": 1, 4 "records": 1, 5 "costtime": "100", 6 "rows": 阅读全文
摘要:
1.使用QueryString, 如....?id=1; response. Redirect(....?id=1) window.location.href=....?id=1 2.使用Session变量 3.Cookie传值 4.Application传值 5.使用Server.Transfer 阅读全文
摘要:
原文:https://www.cnblogs.com/johnsmith/archive/2012/12/03/2799795.html 参考:https://www.cnblogs.com/dotnet261010/p/6513618.html 1、实体类转换成XML 2、将XML转换成实体类 3 阅读全文