随笔- 8
文章- 33
评论- 167
阅读-
33239
文章分类 - WINForm.NET
Request.ServerVariables参数集
摘要:Request.ServerVariables参数集 做asp.net探针必备. Request.ServerVariables('Url') 返回服务器地址 Request.ServerVariables('Path_Info') 客户端提供的路径信息 Request.ServerVariables('Appl_Physical_Path') 与应用程序元数据库路径相应的物理路径 Re...
阅读全文
实用的xml操作类
摘要:using System; using System.Xml; using System.IO; using System.Data; namespace EmanUtils { /**//// /// XmlHelper 的摘要说明。 /// xml操作类 /// public class XmlHelper { prot...
阅读全文
字符文本操作类
摘要:using System; using System.Collections; using System.Text; using System.Text.RegularExpressions; using System.Security.Cryptography; /**///////////////////////////////////////////////////// ///功能:字符文本...
阅读全文
Config操作类
摘要:using System; using System.Xml; using System.Configuration; namespace EmanUtils { /**//// /// 读配置文件的操作 /// Config操作类 /// public class ConfigHelper { public ConfigHel...
阅读全文
委托与多线程
摘要:很多时候写windows程序都需要结合多线程,在.net中用如下得代码来创建并启动一个新的线程。 public void ThreadProc(); Thread thread = new Thread( new ThreadStart( ThreadProc ) ); thread.IsBackground = true; thread.Start(); 但是很多时候,在新的线程中,我们需要与U...
阅读全文