摘要: //TransmitFile实现下载[代码]//WriteFile实现下载代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--/*usingSystem.IO;*/stringfileName="asd.txt";//客户端保存的文件名stringfi... 阅读全文
posted @ 2010-04-06 15:59 Alex.Net 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 由于项目需要,在网上找到个C#的排列组合类,现记录在此。//-----------------------------------------------------------------------------////算法:排列组合类////版权所有(C)Snowdust//个人博客http://blog.csdn.net/snowdust&http://snowdust.cnblog... 阅读全文
posted @ 2010-04-01 13:45 Alex.Net 阅读(607) 评论(0) 推荐(0) 编辑
摘要: 在做项目中需要读写Excel文件,在网上搜索到这个类库,在使用中觉得很不错,而且有完整的教程。故在此记录下来,以备后续使用学习。1.1 什么是NPOINPOI,顾名思义,就是POI的.NET版本。那POI又是什么呢?POI是一套用Java写成的库,能够帮助开发者在没有安装微软Office的情况下读写... 阅读全文
posted @ 2010-03-30 15:22 Alex.Net 阅读(1296) 评论(0) 推荐(0) 编辑
摘要: 1、定义在Settings.settings文件中定义配置字段。把作用范围定义为:User则运行时可更改,Applicatiion则运行时不可更改。可以使用数据网格视图,很方便;2、读取配置值text1.text = Properties.Settings.Default.FieldName;//FieldName是你定义的字段3、修改和保存配置Properties.Settings.Defaul... 阅读全文
posted @ 2010-03-17 14:53 Alex.Net 阅读(1313) 评论(0) 推荐(0) 编辑
摘要: String.Split 方法有6个重载函数:程序代码 1) public string[] Split(params char[] separator)2) public string[] Split(char[] separator, int count)3) public string[] Split(char[] separator, StringSplitOptions options)... 阅读全文
posted @ 2010-01-26 15:48 Alex.Net 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<scriptlanguage="javascript">functionspli(){datastr="2,2,3,5,6,6";varstr=newArray(); str=datas... 阅读全文
posted @ 2010-01-26 15:45 Alex.Net 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 要在GridView中加入//实现分页AllowPaging="true"//一页数据10行PageSize="10"// 分页时触发的事件OnPageIndexChanging="gvwDesignationName_PageIndexChanging"在服务器事件里protected void gvwDesignationName_PageIndexChanging(object sender, GridViewPageEventArgs e){ gvwDesignationName.PageIndex=e.newIndex; b 阅读全文
posted @ 2010-01-04 17:29 Alex.Net 阅读(228) 评论(0) 推荐(0) 编辑
摘要: [代码]得到TB_GoPage中的值[代码] 阅读全文
posted @ 2010-01-04 17:23 Alex.Net 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.... 阅读全文
posted @ 2009-12-07 12:07 Alex.Net 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 大家都知道网卡的MAC地址可以从DOS窗口中通过输入"ipconfig /all"命令运行结果获得,那么这个问题的具体内容是:在C#中运行一个dos命令,并截取相关输出、输出流。具体代码如下:代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--tbR... 阅读全文
posted @ 2009-12-07 12:04 Alex.Net 阅读(165) 评论(0) 推荐(0) 编辑