10 2016 档案

摘要:/// <summary> /// 时间有0;00;00 的 隐藏 /// </summary> /// <param name="str"></param> /// <returns></returns> public static string CutString(string str) { s 阅读全文
posted @ 2016-10-27 21:12 Debugs 阅读(227) 评论(0) 推荐(0)
摘要:NPOIExcel npoiexcel = new NPOIExcel(); string filename = DateTime.Now.ToString("yyyyMMddHHmmssffff"); npoiexcel.ToExcel(dt, "工作计划", "工作计划", AppDomain. 阅读全文
posted @ 2016-10-27 21:05 Debugs 阅读(169) 评论(0) 推荐(0)
摘要:<table> <thead> <tr> <th>姓名</th> <th>性别</th> <th>暂住地</th> </tr> </thead> <tbody> <tr class="parent" id="row_01"> <td colspan="3">前台设计组</td> </tr> <tr 阅读全文
posted @ 2016-10-27 11:47 Debugs 阅读(3868) 评论(0) 推荐(0)
摘要:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.or 阅读全文
posted @ 2016-10-27 11:17 Debugs 阅读(259) 评论(0) 推荐(0)
摘要:-- Create sequence create sequence XRMKSD_DET_SEQminvalue 1maxvalue 999999999999999999999999999start with 1increment by 1cache 75; 阅读全文
posted @ 2016-10-27 11:11 Debugs 阅读(213) 评论(0) 推荐(0)
摘要:<table id="tab" border="1" width="60%" align="center" style="margin-top:20px"> <tr> <td width="20%">序</td> <td >标题</td> <td >描述</td> <td >操作</td> </tr 阅读全文
posted @ 2016-10-27 11:09 Debugs 阅读(1637) 评论(0) 推荐(0)
摘要:declare @a intbegin set @a=(select COUNT(*) from PFT_PWK_WORKS)end; -- 必须加分号 with query as (select ROW_NUMBER() over(order by pwk_start_dt desc) AS RO 阅读全文
posted @ 2016-10-21 13:03 Debugs 阅读(138) 评论(0) 推荐(0)
摘要:Number.prototype.toRound = function(d) { var s=this+"";if(!d)d=0; if(s.indexOf(".") 1)s+=".";s+=new Array(d+1).join("0"); if (new RegExp("^(-|\\+)?(\\ 阅读全文
posted @ 2016-10-11 10:01 Debugs 阅读(324) 评论(0) 推荐(0)