上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 31 下一页
  2017年3月24日
摘要: Javascript -- toFixed()函数 1. toFixed(n) 限制小数点后位数,四舍五入。n:0~20 。 2. 作用对象必须是number,不能为其他类型。如(8.001).toFixed(2)返回8.00; 3. toFixed(n)返回值是String类型,所有当成数字进行比 阅读全文
posted @ 2017-03-24 14:57 雪原日暮 阅读(460) 评论(0) 推荐(0)
  2017年3月20日
摘要: public List FindList(Expression> predicate, Pagination pagination) { MovieSiteEntities db = new MovieSiteEntities(); pagination.records = db.Set().Where(predicate).... 阅读全文
posted @ 2017-03-20 16:44 雪原日暮 阅读(195) 评论(0) 推荐(0)
  2017年3月1日
摘要: CREATE PROCEDURE pagination3 @tblName varchar(255), -- 表名 @strGetFields varchar(1000) = '*', -- 需要返回的列 @fldName varchar(255)='', -- 排序的字段名 @PageSize int = 10, -- 页尺寸 @P... 阅读全文
posted @ 2017-03-01 15:59 雪原日暮 阅读(142) 评论(0) 推荐(0)
  2017年2月10日
摘要: winform 皮肤 https://github.com/kwonganding/winform.controls 阅读全文
posted @ 2017-02-10 09:31 雪原日暮 阅读(126) 评论(0) 推荐(0)
  2017年1月9日
摘要: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATIO 阅读全文
posted @ 2017-01-09 08:43 雪原日暮 阅读(332) 评论(0) 推荐(0)
  2016年12月28日
摘要: /// /// 指定开始字符串和结束字符串,截取中间的字符 /// /// 要截取的字符串 /// 开始字符串 /// 结束字符串 /// public static string GetValue(string str, string s, string e) ... 阅读全文
posted @ 2016-12-28 15:56 雪原日暮 阅读(428) 评论(0) 推荐(0)
摘要: 需要添加fiddlercore 的dll引用 阅读全文
posted @ 2016-12-28 15:39 雪原日暮 阅读(1218) 评论(0) 推荐(0)
摘要: webbroswer 后台注入脚本 阅读全文
posted @ 2016-12-28 15:35 雪原日暮 阅读(162) 评论(0) 推荐(0)
摘要: System.IO.FileStream stream = new System.IO.FileStream(fileFullPath, System.IO.FileMode.Open, System.IO.FileAccess.Read, FileShare.ReadWrite); 阅读全文
posted @ 2016-12-28 08:57 雪原日暮 阅读(197) 评论(0) 推荐(0)
  2016年12月16日
摘要: public string HttpUploadFile() { string url = "http://localhost:50380/WebForm1.aspx"; string filepath = "C:\\Users\\lei2.wang\\Desktop\\Capture.PNG"; stri... 阅读全文
posted @ 2016-12-16 16:30 雪原日暮 阅读(4051) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 31 下一页