11 2013 档案

摘要:string strCon = "Provider=Microsoft.ACE.OLEDB.12.0;data source=" + filePath + ";Extended Properties='Excel 12.0;HDR=Yes;IMEX=1'";//Excel 2007文件Provider=Microsoft.Jet.OleDb.4.0;data source=" + filePath + ";Extended Properties='Excel 8.0;HDR=Yes;IMEX=1'&qu 阅读全文
posted @ 2013-11-25 15:25 冰深 阅读(462) 评论(0) 推荐(0)
摘要:IOS上Js日期转换中new Date("yyyy-mm-dd")不能正常工作,必须使用new Date("yyyy/MM/dd");日期相加减:Date.prototype.DateAdd = function (strInterval, Number) { var dtTmp = this; switch (strInterval) { case 's': return new Date(Date.parse(dtTmp) + (1000 * Number)); case 'n': return new Date(Da 阅读全文
posted @ 2013-11-12 11:11 冰深 阅读(1650) 评论(0) 推荐(0)