摘要: private void ExpireNow() { Response.AddHeader("Last-Modified", DateTime.UtcNow.ToString()); Response.AddHeader("Cache-Control", "no-cache, must-revalidate"); Response.AddHeader("Pragma", "no-cache"); ... 阅读全文
posted @ 2010-05-04 15:08 Jake.Xu 阅读(137) 评论(0) 推荐(0)
摘要: FireFox与IE兼容性汇编(转)下面是一些Javascript的IE和Firefox(火狐)兼容性的常用例子1. document.formName.item("itemName") 问题说明:IE下,可以使用document.formName.item("itemName")或document.formName.elements["elementName"];Firefox下,只能使用doc... 阅读全文
posted @ 2010-05-04 13:25 Jake.Xu 阅读(362) 评论(0) 推荐(0)