It's not who you are underneath, it's what you do that defines you

摘要: 如果要将Excel的中的数据导入SqlServer中,那么,先要将excel中的数据,读入到内存中的数据表中,然后,遍历表数据,插入数据库this.lb_status.Visible = false;System.Windows.Forms.OpenFileDialog fd = new OpenFileDialog();if (fd.ShowDialog() == DialogResult.OK){DataSet ds=new DataSet ();string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "D 阅读全文
posted @ 2012-06-08 16:29 金铭杰 阅读(4810) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/hijack/archive/2010/03/25/1695391.htmlhttp://www.cnblogs.com/yuteng/articles/1751527.htmlhttp://www.cnblogs.com/zhangqifeng/archive/2009/06/10/1500537.html有需要的好好看看这三个帖子 阅读全文
posted @ 2012-06-08 15:43 金铭杰 阅读(365) 评论(0) 推荐(0) 编辑
摘要: 方法一:正则分析法function getQueryString(name) { var reg =new RegExp("(^|&)"+ name +"=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if (r !=null) return unescape(r[2]); returnnull; }这样调用:alert(GetQueryString("参数名1"));alert(GetQu 阅读全文
posted @ 2012-06-08 00:26 金铭杰 阅读(263) 评论(0) 推荐(0) 编辑

Brick walls are there for a reason :they let us prove how badly we want things