07 2011 档案

摘要:后台代码 /// <summary> /// 导出Excel /// </summary> /// <param name="excelName"></param> /// <param name="html"></param> /// <param name="cssName"></param> public static void OutExcel(string excelName, string html, string cssNam 阅读全文
posted @ 2011-07-27 09:34 Cynosure鱼 阅读(2969) 评论(0) 推荐(0)
摘要:create proc [dbo].[up_tuser_updatepwd]ASdeclare @indextable table(rowid int identity(1,1),nid int)insert into @indextable(nid) select userID from tuser declare @uid int declare laon_cursor cursor for select nid from @indextableopen laon_cursor fetch next from laon_cursor into @ExpertIDwhile @@fetch_ 阅读全文
posted @ 2011-07-20 08:45 Cynosure鱼 阅读(175) 评论(0) 推荐(0)
摘要:常用正则表达式^\\d+$ ----------------------------------------------------------------------------------非负整数(正整数 + 0)[0-9]*[1-9][0-9]*$ ----------------------------------------------------------------------------------------------正整数^((-\\d+)|(0+))$"----------------------------------------------------- 阅读全文
posted @ 2011-07-14 09:02 Cynosure鱼 阅读(308) 评论(0) 推荐(0)