上一页 1 ··· 18 19 20 21 22
摘要: 转自 http://www.cnblogs.com/smallstone/archive/2011/12/07/2277194.html参考另一个:http://www.codeproject.com/Articles/188749/WCF-Sessions-Brief-Introduction1、WCF 几种服务对象实例创建模式wcf中有三种服务对象实例创建模式:PerCall、PerSession、Single.(具体在哪里设置,最后例子中有很好的阐述)2、几种模式下服务对象实例的生命周期(这里暂不考虑Mep)PerCall模式 PerCall模式工作流程如下 客户端创建代理对象(Prox 阅读全文
posted @ 2012-05-02 23:40 webglcn 阅读(1270) 评论(0) 推荐(0) 编辑
摘要: 1。 【2008 R2】A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, 阅读全文
posted @ 2012-03-28 09:40 webglcn 阅读(3770) 评论(0) 推荐(1) 编辑
摘要: http://www.cnblogs.com/swtseaman/archive/2011/03/29/1998611.htmlC#语言: Codee#2416using System;using System.Collections.Generic;using System.Text;using System.IO;using System.Net;using System.Windows.Forms;using System.Globalization;namespace FtpLib{public class FtpWeb{string ftpServerIP;string ftpRem 阅读全文
posted @ 2012-03-14 17:46 webglcn 阅读(459) 评论(0) 推荐(1) 编辑
摘要: function copyToClipboard(txt) { if(window.clipboardData) {window.clipboardData.clearData(); window.clipboardData.setData("Text", txt); } else if(navigator.userAgent.indexOf("Opera") != -1) { window.location = txt; } else if (window.netscape) { try {netscape.security.PrivilegeMana 阅读全文
posted @ 2011-10-21 13:14 webglcn 阅读(564) 评论(0) 推荐(0) 编辑
摘要: 【转载请注明出处 谢谢】来自http://www.cnblogs.com/webglcn/archive/2011/09/05/2167621.html为调用微薄API做准备,现在QQ, 新浪,搜狐,Twitter等微薄所使用的协议。根据我的理解做了一些转译,直译读起来很痛苦。(文化差异 + 个人水平有限)。不对的地方还请大家指正。------------------------------------------------------------------------------------------------------------------------------------- 阅读全文
posted @ 2011-09-06 18:29 webglcn 阅读(1465) 评论(0) 推荐(1) 编辑
摘要: 【转载请注明出处 谢谢】来自http://www.cnblogs.com/webglcn/archive/2011/09/05/2167621.html为调用微薄API做准备,现在QQ, 新浪,搜狐,Twitter等微薄所使用的协议。根据我的理解做了一些转译,直译读起来很痛苦。(文化差异 + 个人水平有限)。不对的地方还请大家指正。------------------------------------------------------------------------------------------------------------------------------------- 阅读全文
posted @ 2011-09-05 15:46 webglcn 阅读(1603) 评论(4) 推荐(4) 编辑
摘要: http://rasor.wordpress.com/2008/08/23/wss-request-lifetime/ 阅读全文
posted @ 2011-09-02 11:32 webglcn 阅读(299) 评论(0) 推荐(1) 编辑
摘要: 【转载请注明出处 谢谢】从今天开始学习WebGL, 如果有希望一起学习的朋友联系我 webglcn@hotmail.com我会把我学到的以及大家的问题汇总为以后的文章素材。1.什么是WebGL1.1 WebGL(Web-based Graphics Library) ,WebGL是一种3D绘图标准,这种绘图技术标准允许把JavaScript和OpenGL ES 2.0结合在一起,通过增加OpenG... 阅读全文
posted @ 2011-08-20 17:58 webglcn 阅读(1160) 评论(5) 推荐(2) 编辑
上一页 1 ··· 18 19 20 21 22