2016年2月16日
摘要: 另一种模板写法 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <!-- saved from url=(0043)http://jtemplates. 阅读全文
posted @ 2016-02-16 10:22 邢帅杰 阅读(188) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <!-- saved from url=(0043)http://jtemplates.tpython. 阅读全文
posted @ 2016-02-16 10:03 邢帅杰 阅读(129) 评论(0) 推荐(0) 编辑
  2016年1月21日
摘要: 元字符 . :匹配除换行符以外的任意字符\w:匹配字母或数字或下划线或汉字\s:匹配任意的空白符 包括空格,制表符(Tab),换行符,中文全角空格等\d:匹配数字\b:匹配单词的开始或结束^:匹配字符串的开始$:匹配字符串的结束 例如: 1. 0\d{2}-\d{8} 这里\d后面的{2}和{8}的 阅读全文
posted @ 2016-01-21 17:17 邢帅杰 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 使用模板绑定数据,可以嵌套循环 参考:http://www.doc88.com/p-6621237324128.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml 阅读全文
posted @ 2016-01-21 10:37 邢帅杰 阅读(466) 评论(0) 推荐(0) 编辑
  2016年1月19日
摘要: vs上NuGet搜索NPOI.Excel 和 Newtonsoft.Json,安装。https://www.cnblogs.com/mq0036/p/9835975.html /// <summary> /// 导出账单汇总 /// </summary> /// <param name="sende 阅读全文
posted @ 2016-01-19 11:46 邢帅杰 阅读(530) 评论(1) 推荐(0) 编辑
  2016年1月18日
摘要: using System;using System.Data;using System.Configuration;using System.Linq;using System.Web;using System.Xml.Linq;using System.Data.SqlClient;/// ///... 阅读全文
posted @ 2016-01-18 15:17 邢帅杰 阅读(386) 评论(0) 推荐(0) 编辑
  2016年1月14日
摘要: var angelweb="我,你,ta,";var re=/[,,]/g;if(re.test(angelweb)){ var n=angelweb.match(re).length; alert("字符串中包含"+n+"个逗号!"); } 阅读全文
posted @ 2016-01-14 12:11 邢帅杰 阅读(1427) 评论(0) 推荐(0) 编辑
  2016年1月12日
摘要: 需要引用:using System.Data.OleDb; /// <summary> /// 获取Excel数据,包含所有sheet /// </summary> /// <param name="fullPath"></param> /// <returns></returns> public 阅读全文
posted @ 2016-01-12 18:55 邢帅杰 阅读(616) 评论(0) 推荐(0) 编辑
  2016年1月9日
摘要: // 取当前页面名称(不带后缀名) function pageName() { var a = location.href; var b = a.split("/"); var c = b.slice(b.length-1, b.length).toString(String).split(".")... 阅读全文
posted @ 2016-01-09 14:16 邢帅杰 阅读(245) 评论(0) 推荐(0) 编辑
  2016年1月8日
摘要: Case具有两种格式。简单Case函数和Case搜索函数。--简单Case函数CASE sexWHEN '1' THEN '男'WHEN '2' THEN '女'ELSE '其他' END--Case搜索函数CASE WHEN sex = '1' THEN '男'WHEN sex = '2' THE... 阅读全文
posted @ 2016-01-08 17:11 邢帅杰 阅读(129) 评论(0) 推荐(0) 编辑