WCF安全性资料
摘要:来之于http://www.codeplex.com/的WCF安全性方面的资料,比较全面,暂时先收集到这里 WCF Security Guidance Improving Web Services S
阅读全文
posted @
2008-06-30 21:55
guojin
阅读(318)
推荐(0)
在wcf中使用基于证书的授权和保护
摘要:Using Certificate-based Authentication and Protection with Windows Communication Foundation (WCF) 很有
阅读全文
posted @
2008-06-30 21:47
guojin
阅读(241)
推荐(0)
FF和IE下的js兼容性问题(转)
摘要:做了几周的js兼容性,多少总结了几条经验,下面把ff下常用的替代写法和区别列举出来,大家共享。1,document.getElementById替代document.all(ie适用)2,集合[]替代()(ie适用)3,target替代srcElement;parentNode替代parentElement(parentNode ie适用)4,node.parentNode.removeChild...
阅读全文
posted @
2008-06-15 22:39
guojin
阅读(401)
推荐(0)
js中给一个元素添加事件
摘要:给document全局文档的动作检测添加事件,这是禁止右键、禁止复制的页面的方式之一 try{ document.attachEvent("onclick",function(){onclick();},false); // IE使用这个 }catch(e){ document.addEventListener("onclick",function(){onclick();},false)...
阅读全文
posted @
2008-06-15 22:16
guojin
阅读(1590)
推荐(0)
Best Practices for Speeding Up Your Web Site
摘要:如何加速web page加载的速度,一直是个值得考虑的问题。 在Yahoo给出了一个很好的总结,英文原文地址是Best Practices for Speeding Up Your Web Site。
阅读全文
posted @
2008-06-04 14:44
guojin
阅读(349)
推荐(0)