摘要: DbFunctions.CreateDateTime 阅读全文
posted @ 2018-11-14 13:42 你狗懂嘛? 阅读(346) 评论(0) 推荐(0) 编辑
摘要: $.fn.datepicker.dates['cn'] = { //切换为中文显示 days: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"], daysShort: ["日", "一", "二", "三", "四", "五", "六" 阅读全文
posted @ 2018-11-14 13:27 你狗懂嘛? 阅读(1292) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE HTML><html> <head> <link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css" rel="stylesheet"> <lin 阅读全文
posted @ 2018-11-14 13:23 你狗懂嘛? 阅读(584) 评论(0) 推荐(0) 编辑
摘要: //eg1 var index = layer.load(); //eg2 var index = layer.load(1); //换了种风格 //eg3 var index = layer.load(2, {time: 10*1000}); //又换了种风格,并且设定最长等待10秒 //关闭 l 阅读全文
posted @ 2018-10-31 15:48 你狗懂嘛? 阅读(301) 评论(0) 推荐(0) 编辑
摘要: string path = Server.MapPath(Url.Content("~/") + "UploadFiles/Template/"); FileStream fs = new FileStream(path + file, FileMode.Open); byte[] bytes = 阅读全文
posted @ 2018-10-31 15:42 你狗懂嘛? 阅读(563) 评论(0) 推荐(0) 编辑
摘要: Html部分 首先准备dom结构,包含存放文件信息的容器、选择按钮和上传按钮三个部分。 <div id="uploader" class="wu-example"> <!--用来存放文件信息--> <div id="thelist" class="uploader-list"></div> <div 阅读全文
posted @ 2018-10-31 13:52 你狗懂嘛? 阅读(282) 评论(0) 推荐(0) 编辑
摘要: https://www.layui.com/doc/modules/layer.html#layer.closeAll https://layer.layui.com/ 阅读全文
posted @ 2018-10-31 13:49 你狗懂嘛? 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 使用的Microsoft.Jet.OLEDB.4.0,的方法并不能连接最新的Access 存储文件,而且Microsoft.Jet.OLEDB.4.0不能使用x64的方式生成,而且使用这个数据库引擎效率也是比较低的。这让我比较苦恼。现在发现了另一个新的引擎并且支持x64。Microsoft.ACE. 阅读全文
posted @ 2018-09-18 15:01 你狗懂嘛? 阅读(6162) 评论(0) 推荐(0) 编辑
摘要: public static List<T> TableToList<T>(DataTable dt, bool isStoreDB = true) { List<T> list = new List<T>(); Type type = typeof(T); //List<string> listCo 阅读全文
posted @ 2018-09-18 13:41 你狗懂嘛? 阅读(708) 评论(0) 推荐(0) 编辑
摘要: HTTP简介 HTTP协议是Hyper Text Transfer Protocol(超文本传输协议)的缩写,是用于从万维网(WWW:World Wide Web )服务器传输超文本到本地浏览器的传送协议。 HTTP是一个基于TCP/IP通信协议来传递数据(HTML 文件, 图片文件, 查询结果等) 阅读全文
posted @ 2018-08-29 15:02 你狗懂嘛? 阅读(453) 评论(0) 推荐(0) 编辑