- 浏览: 109298 次
- 性别:
- 来自: 广州
最新评论
-
JonyUabka:
很感谢,呵呵。
Oracle case when的用法
文章列表
首先是大家在网上能搜索一箩筐的仅导出数据的做法:view plaincopy to clipboardprint?public static void Export(Page pg, GridView gv,bool alowPage, string FileName) { pg.Response.Clear(); pg.Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8"); pg.Response.AppendHeader("Content-Disposition" ...
- 2009-09-28 01:04
- 浏览 1868
- 评论(0)
技术解析:什么是模式? 什么是框架?
1.什么是模式? 模式,即pattern。其实就是解决某一类问题的方法论。你把解决某类问题的方法总结归纳到理论高度,那就是模式。 Alexander给出的经典定义是:每个模式都描述了一 ...
- 2009-09-07 18:11
- 浏览 747
- 评论(0)
1。^\d+$ //匹配非负整数(正整数 + 0) 2。^[0-9]*[1-9][0-9]*$ //匹配正整数 3。^((-\d+) ¦(0+))$ //匹配非正整数(负整数 + 0) 4。^-[0-9]*[1-9][0-9]*$ //匹配负整数 5。^-?\d+$ //匹配整数 6。^\d+(\.\d+)?$ //匹配非负浮点数(正浮点数 + 0) 7。^(([0-9]+\.[0-9]*[1-9][0-9]*) ¦([0-9]*[1-9][0-9]*\.[0-9]+) ¦([0-9]*[1-9][0-9]*))$ //匹配正浮点数 8。^((-\d+(\.\d+)?) ¦(0 ...
- 2009-09-07 12:54
- 浏览 824
- 评论(0)