2009年11月30日
摘要: 方式一 string strResult = string.Empty; HttpWebRequest myReq = (HttpWebRequest)HttpWebRequest.Create("http://xxxxx/checkpower.aspx"); string postdata = "v_objectid=" + Objectid.ToString() + "&v_website=" + website + "&v_useracc=" + useracc; byte[] request 阅读全文
posted @ 2009-11-30 18:26 vingi_苍月 阅读(631) 评论(0) 推荐(0)
摘要: 缓存这东西,在一定程度上加快了页面的装载,但是也常常给我们带来麻烦。我在上篇文章里简单介绍了jQuery中Load方法的使用。在实际运用中,我们可能会碰到浏览器缓存的问题。比如我就在IE7里碰到这个问题。jQuery Load样本代码:$(document).ready(function(){ $("#labels").load("/blog/categories/labels.html"); //在页面装载时,在ID为#labels的DOM元素里插入labels.html的内容。});当我更新了labels.html以后,在IE7里load方法仍旧在使 阅读全文
posted @ 2009-11-30 18:21 vingi_苍月 阅读(1098) 评论(0) 推荐(1)