文章分类 -  C#

About C#
摘要:C#之压缩文件2007年03月23日 星期五 18:00使用ICSharpCode.SharpZipLib.dll下载地址:http://www.icsharpcode.net/OpenSource/SharpZipLib/using ICSharpCode.SharpZipLib.GZip;using ICSharpCode.SharpZipLib.Checksums;using ICSharpCode.SharpZipLib.Zip;代码:压缩到文件 private void btnZip_Click(object sender, System.EventArgs e) { string 阅读全文
posted @ 2011-09-27 11:42 从头儿再来 阅读(365) 评论(0) 推荐(0)
摘要:记录to备忘读取xml void init_ByXML() { DataSet Ds = new DataSet(); string path = Server.MapPath("~/aa.xml"); Ds.ReadXml(path); if (Ds.Tables[0].Rows.Count == 28) { for (int i = 0; i < 28; i++) { if (Ds.Tables[0].Rows[i]["value"].ToString() == "1") { int j = i + 1; CheckBox 阅读全文
posted @ 2011-05-03 17:14 从头儿再来 阅读(67) 评论(0) 推荐(0)