03 2009 档案
求两个日期之间的天数
摘要:private void Form1_Load(object sender, EventArgs e) { this.textBox1.Text = "2008-10-15"; this.textBox2.Text = "2008-10-25"; } private void button1_Click(object sender, EventArgs e) { DateTime t1 = Con... 阅读全文
posted @ 2009-03-31 21:04 Liran 阅读(328) 评论(0) 推荐(0)
DataTable导出Excel
摘要:namespace ExportData{ using System; using System.Data; using System.IO; using System.Text; using System.Threading; using System.Web; using System.Xml; using System.Xml.XPath; using System.Xml.Xsl; pub... 阅读全文
posted @ 2009-03-13 16:04 Liran 阅读(947) 评论(0) 推荐(0)