03 2007 档案
使用iis发布wcf服务
摘要:如何使用iis发布wcf服务 阅读全文
posted @ 2007-03-15 13:54 stswordman 阅读(5507) 评论(7) 推荐(0) 编辑
SqlServer语句收集
摘要:1 临时表--创建临时表 数据库重启后表#a1会消失create table #a1(col1 int,col2 int)select * from #a1 --创建临时表 改表只存在与当前的sessioncreate table ##a2(col1 int,col2 int) 2 从两个表中selectcreate table ##b1(col1 int) create table ##b2(col2 int) insert ##b1 values(1)insert ##b1 values(2)insert ##b1 values(3) insert ##b2 values(2)inser 阅读全文
posted @ 2007-03-15 10:35 stswordman 编辑
微软(北京).NET俱乐部第十二次技术沙龙
摘要:微软(北京).NET俱乐部第十二次技术沙龙 -.NET Framework 3.0开发实战培训 邀 请 函 亲爱的.NET俱乐部会员及.NET技术爱好者: 2006年底随着微软新一代操作系统WindowsVista以及Microsoft .NET 3.0同时发布,分别成为微软新一代的操作系统和编程平台。Microsoft .NET 3.0的重要特性有哪些?微软会提供怎样的工具支持?如何在当前使用或... 阅读全文
posted @ 2007-03-07 12:03 stswordman 阅读(766) 评论(1) 推荐(0) 编辑
WCF异常收集
摘要:1 调用Subscribe时引发异常: 客户端代码如下: TempChangedHandler handler = new TempChangedHandler(); InstanceContext siteTempChangedHandler = new InstanceContext(null,handler); Tem... 阅读全文
posted @ 2007-03-02 11:01 stswordman 编辑