摘要: 1 using System;2 using System.Data;3 using System.Configuration;4 using System.Collections;5 using System.Web;6 using System.Web.Security;7 using System.Web.UI;8 using System.Web.UI.WebControls;9 using System.Web.UI.WebControls.WebParts;10 using System.Web.UI.HtmlControls;11 12 public partial class 阅读全文
posted @ 2010-08-23 21:57 小锋神 阅读(642) 评论(0) 推荐(1) 编辑
摘要: CREATE PROCEDURE search_sp@tblName varchar(255), -- 表名 @strGetFields varchar(1000) = '*', -- 需要返回的列 @fldName varchar(255)='', -- 排序的字段名 @PageSize int = 10, -- 页尺寸 @PageIndex int = '', -- 页码 @doCount bit = 0, -- 返回记录总数, 非 0 值则返回 @OrderType bit = '', -- 设置排序类型, 非 0 值则降序 阅读全文
posted @ 2010-08-23 21:55 小锋神 阅读(295) 评论(0) 推荐(0) 编辑
摘要: public static bool AddOfficialCaseRegisters(string path)//选择导出的路径 { List<DataTable> dt = GetLeadinExcel(path); int z = 0; for (int i = 2; i < dt[0].Rows.Count; i++) { string sql1 = string.Format("select * from OfficialCaseRegisters where Identitycard='{0}' and FillTime='{1} 阅读全文
posted @ 2010-08-23 21:46 小锋神 阅读(437) 评论(0) 推荐(0) 编辑