摘要:
主要参考了M$的SqlHelper类, 在参考了SqlHelper的基础进行修改而成,对一些基本的数据库操作进行了封装. 推荐使用 using (DBHelper db = new DBHelper(Config.ConnStr)) { } 代码如下: using System; using System.Collections.Generic; using System.Text; using ... 阅读全文
摘要:
public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void Button1_Click(object sender, EventArgs e) { if (FileUpload1.HasFile... 阅读全文
摘要:
#region ExportExcel /// /// 导出Excel /// /// 需要导出的数据 public void ExportExcel(DataTable dt) { Microsoft.Office.Interop.Excel.Application xApp = new Microsoft.Office.In... 阅读全文