摘要:
#region 操作文本文件 /// <summary> /// 读取文件 /// </summary> /// <param name="strPath">文件路径</param> /// <param name="strValue">文件内容</param> /// <returns></ret 阅读全文
摘要:
/// <summary> /// 输出时间格式(年-月-日) /// </summary> /// <param name="Time">要转换的时间</param> public static string DataTime(string Time) { string str_Time = Da 阅读全文
摘要:
#region DES加密 /// <summary> /// DES加密 /// </summary> /// <param name="datastr">需要加密的字符串</param> /// <returns>返回加密后的字符串</returns> public static string 阅读全文
摘要:
#region 数据验证方法 /// 验证界面数据的有效性 /// </summary> /// <param name="_ValidateString">将要验证的字符串</param> /// <param name="_ValidateType">验证类型</param> /// <retu 阅读全文
摘要:
using System; using System.Web; using System.Web.UI; using System.IO; using System.Threading; namespace HuoLi.Common { /// <summary> /// file 的摘要说明。 / 阅读全文
摘要:
using System; using System.Web; using System.Web.UI; using System.Text.RegularExpressions; namespace HuoLi.Common { /// <summary> /// Location 的摘要说明。 阅读全文
摘要:
/// <summary> /// 根据阿拉伯数字返回月份的名称(可更改为某种语言) /// </summary> public static string[] Monthes { get { return new string[] { "January", "February", "March", 阅读全文
摘要:
using System; using System.Diagnostics; using System.IO; using System.Reflection; using System.Runtime.InteropServices; using System.Security.Cryptogr 阅读全文
摘要:
在运行窗口输入regedit,打开注册表编辑器,在HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager中找到PendingFileRenameOperations,删除该键值(这个键值是安装程序暂挂项目,只要找到对应的应用程序 阅读全文
摘要:
public static string SystemCheck() { string Agent = HttpContext.Current.Request.ServerVariables["HTTP_USER_AGENT"]; if (Agent.IndexOf("NT 4.0") > 0) { 阅读全文