我的番茄炒蛋
生活如此精彩,挑战无处不在!

导航

 

2008年4月5日

摘要: 主要参考了M$的SqlHelper类, 在参考了SqlHelper的基础进行修改而成,对一些基本的数据库操作进行了封装. 推荐使用 using (DBHelper db = new DBHelper(Config.ConnStr)) { } 代码如下: using System; using System.Collections.Generic; using System.Text; using ... 阅读全文
posted @ 2008-04-05 23:45 bluesky 阅读(482) 评论(0) 推荐(0) 编辑
 
摘要: 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... 阅读全文
posted @ 2008-04-05 23:43 bluesky 阅读(348) 评论(0) 推荐(0) 编辑
 
摘要: #region ExportExcel /// /// 导出Excel /// /// 需要导出的数据 public void ExportExcel(DataTable dt) { Microsoft.Office.Interop.Excel.Application xApp = new Microsoft.Office.In... 阅读全文
posted @ 2008-04-05 23:36 bluesky 阅读(222) 评论(0) 推荐(0) 编辑