摘要: ASP.NET怎么样定时生成静态页面 以前用的是手工点击按钮生成的, 1 /**//// 2 /// 生成静态页面 3 /// 4 /// 声明保存网址的变量 5 /// 新页面的位置(包括生成的文件名) 6 private void Build(string URL,string NewURL)... 阅读全文
posted @ 2008-03-12 18:06 LiJun027 阅读(1031) 评论(1) 推荐(0) 编辑
摘要: /**//// /// 删除字符串尾部的回车/换行/空格 /// /// /// public static string RTrim(string str) { for (int i = str.Length; i >= 0; i--) ... 阅读全文
posted @ 2007-12-28 20:06 LiJun027 阅读(2541) 评论(1) 推荐(0) 编辑
摘要: using System; using System.Text.RegularExpressions; namespace XkCms.Common.Utils { /**//// /// 提供经常需要使用的一些验证逻辑。 /// public class Validator { /**//// /// 检查一个字... 阅读全文
posted @ 2007-12-26 22:03 LiJun027 阅读(295) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Text; /**//// /// 显示消息提示对话框。 /// 李天平 /// 2005.10.1 /// public class MessageBox { private MessageBox() { ... 阅读全文
posted @ 2007-12-16 21:48 LiJun027 阅读(759) 评论(0) 推荐(0) 编辑
摘要: 1using System; 2using System.Data; 3using System.Configuration; 4using System.Web; 5using System.Web.Security; 6using System.Web.UI; 7using System.Web.UI.WebControls; 8using System.Web... 阅读全文
posted @ 2007-12-14 11:32 LiJun027 阅读(477) 评论(1) 推荐(0) 编辑
摘要: 1using System; 2using System.Collections; 3using System.ComponentModel; 4using System.Data; 5using System.Diagnostics; 6using System.Web; 7using System.Web.Services; 8using System.We... 阅读全文
posted @ 2007-05-23 11:10 LiJun027 阅读(6124) 评论(2) 推荐(0) 编辑