摘要: 1.System.Threading.Timer代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--//http://msdn.microsoft.com/en-us/library/system.threading.timer.aspxusingSy... 阅读全文
posted @ 2010-10-27 18:07 zyip 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 通过基本身份验证确保的传输安全http://msdn.microsoft.com/zh-cn/library/ms733775.aspx如何:使用 SSL 证书配置端口http://msdn.microsoft.com/zh-cn/library/ms733791.aspxHTTP 传输安全http://msdn.microsoft.com/zh-cn/library/ms734679.aspx 阅读全文
posted @ 2010-10-27 13:08 zyip 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1. 添加System.ServiceModel和System.ServiceModel.Web的引用2.[代码][代码]调用[代码]http://blog.csdn.net/gisfarmer/archive/2009/07/16/4352634.aspxhttp://www.cnblogs.com/binglingshui/archive/2008/12/29/1364647.html 阅读全文
posted @ 2010-10-27 11:34 zyip 阅读(209) 评论(0) 推荐(0) 编辑
摘要: ProcessMonitor.zip 阅读全文
posted @ 2010-10-26 14:31 zyip 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 1.在一个查询窗口运行以下代码[代码]2.在一个新的查询窗口运行以下代码[代码]观察结果 发现第一个窗口中的两条select显示的数据都是未修改前的数据,第二个窗口在等待第一个窗口中的代码执行完后才得以执行,第二个窗口中的select显示的是修改后的数据这种方式时间上是限制并发,因为其独占性造成请求必须按先后顺序执行 ,效率比较低下。3.两个锁定区别SELECT * FROM table WITH... 阅读全文
posted @ 2010-10-26 10:05 zyip 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 1.在项目中引入Spring.Aop.dll Spring.core.dll和antlr.runtime.dll2.app.config(web.config)中加入以下代码,请注意注释[代码]3.建立一个独立的Class Library 工程,建立以下示例文件代码Code highlighting produced by Actipro CodeHighlighter (freeware)htt... 阅读全文
posted @ 2010-10-21 14:13 zyip 阅读(246) 评论(0) 推荐(0) 编辑
摘要: [代码][代码]TraceViewer可以打开WCF Trace File。 WCF和早期的分布式技术相比,它的Logging及Tracing功能是我们所喜欢的,甚至可以监控这样的功能,在分布式系统中的错误信息是非常难以定位的,WCF有了这个功能,我们可以从容的应对错误信息。在codeproject上有一个可管理WCF Trace File大小的XmlWriterTraceListener。另外c... 阅读全文
posted @ 2010-10-20 13:01 zyip 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 1.It actually goes to JSON and then to XML, but here's an adaption of json2xml.js specifically for use with jQuery's serializeArray function:[代码]and then I call it like this:[代码]http://www.docunext.co... 阅读全文
posted @ 2010-09-28 16:24 zyip 阅读(781) 评论(0) 推荐(0) 编辑
摘要: http://adblockplus.org/blog/five-wrong-reasons-to-use-eval-in-an-extension Wladimir Palant One of the most overused JavaScript features is the eval() function. I have seen it used in very many extens... 阅读全文
posted @ 2010-08-31 15:33 zyip 阅读(343) 评论(0) 推荐(0) 编辑
摘要: Join 表示两个表都必须存在的left join 表示以左边的表为基准,不管你右边的表有没有都显示right join和left join刚好相反full outer join表示只要在两个表中任何一个表中有的都显示inner join 内连接left join 左连接 左边的表为主表,数据完全存在(right join 右连接就是left join的主对象表换过来)full join 相当于 ... 阅读全文
posted @ 2010-08-24 14:45 zyip 阅读(176) 评论(0) 推荐(0) 编辑