摘要:
Request.ServerVariables参数集 做asp.net探针必备. Request.ServerVariables('Url') 返回服务器地址 Request.ServerVariables('Path_Info') 客户端提供的路径信息 Request.ServerVariables('Appl_Physical_Path') 与应用程序元数据库路径相应的物理路径 Re... 阅读全文
摘要:
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; /**///////////////////////////////////////////////////// ///功能:字符文本... 阅读全文
摘要:
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... 阅读全文