Apache反向代理IIS,配置成功啦,发文庆祝,哈哈
2010年8月23日
如果你的电脑,每次开机都要进行磁盘扫描,但是,却没有任何问题发现,你会不会很烦呢
下面就说一下解决这个问题的方法:

阅读全文 ]Windows Xp, 微软, 系统维护
这是一个Javascript操作Cookie的功能封装,对于制作购物车之类的,还是比较实用的,功能包括 添加COOKIE,删除COOKIE,获取COOKIE的值
var HttpCookie = function (name, value, expires, path, domain) { if (name) this.Name = name; if (value) this.Value = value; if (expires) this.Expires = expires; if (path) this.Path = path; if (domain) this.Domain = domain; }; HttpCookie.prototype = { Name: '', Value: '', Expires: '', Path: '/', Domain: '', toCookie: function () { var NewCookie = this.Name + '=' + this.Value; if (this.Expires) NewCookie += (';expires=' + this.Expires); if (this.Path) NewCookie += (';path=' + this.Path); if (this.Domain) NewCookie += (';domain=' + this.Domain); return NewCookie; } } var CookieHelper = function () { }; CookieHelper.ConvertToUTCString = function (hourNumber) { if (!hourNumber || hourNumber == 0) return null; var Timestamp = (new Date().getTime() + (hourNumber * 1000 * 60 * 60)); return new Date(Timestamp).toUTCString(); }; CookieHelper.Set = function (cookieName, cookieValue, expireHour, path, domain) { var HC = new HttpCookie ( cookieName, escape(cookieValue), CookieHelper.ConvertToUTCString(expireHour), path, domain ); document.cookie = HC.toCookie(); }; CookieHelper.Get = function (cookieName) { var regex = new RegExp(("(^| )" + cookieName + "=([^;]*)(;|$)")); var Matchs = document.cookie.match(regex); if (Matchs) return unescape(Matchs[2]); return null; }; CookieHelper.Delete = function (cookieName, path, domain) { if (!CookieHelper.Get(cookieName)) return; var HC = new HttpCookie ( cookieName, null, CookieHelper.ConvertToUTCString(-100) ); document.cookie = HC.toCookie(); };
[
阅读全文 ]