摘要: for (int i = 0; i < tempint.GetLength(0); i++) { for (int j = 0; j < tempint.GetLength(1); j++) { //tempint[i, j] = i + j; ... 阅读全文
posted @ 2008-12-06 23:14 bestsaler 阅读(128) 评论(0) 推荐(0) 编辑
摘要: create proc ProcSetOpenMonth(@GcompanyUser varchar(120),@months int) as begin declare @PoorNum int if exists(select * from Hr_OpenMonth where GcompanyUser=@GcompanyUser) begin --if(datediff(d,GstartDa... 阅读全文
posted @ 2008-12-06 17:35 bestsaler 阅读(156) 评论(0) 推荐(0) 编辑
摘要: public void Dirs(string Path) { System.IO.DirectoryInfo dirs = new System.IO.DirectoryInfo(Path); foreach (FileInfo fi in dirs.GetFiles("*.htm")) ... 阅读全文
posted @ 2008-12-06 10:07 bestsaler 阅读(135) 评论(0) 推荐(0) 编辑