摘要: http://www.cqjy.com/jykt/ShowArticle.asp?ArticleID=5233内容摘要:Windows Media Server服务虽然是Windows Server 2003系统自带组件之一,但是在默认情况下没有安装,需要自行手动添加。在Windows Server 2003操作系统中,除了可以使用“Windows组件向导”安装Windows Media服务之外,还可以通过“配置您的服务器向导”来实现。 一、Windows Media Services 服务的安装 Windows Media Server服务虽然是Windows Server 2003系统.. 阅读全文
posted @ 2012-04-19 15:01 cpcpc 阅读(24155) 评论(0) 推荐(0) 编辑
摘要: 今天在做从Silverlight页中跳转到aspx页的时候,出现错误:第一次跳转的时候就出现这个错误,然后在点跳转或者刷新这个错误页面,问题就没有了。解决方案:在C:\Program Files\Microsoft Silverlight\4.0.60831.0 这样的文件夹。找到System.Windows.dll,拷贝到web项目下的Bin目录下。Ok,问题解决了!最后谢谢http://www.haogongju.net/art/497239 阅读全文
posted @ 2012-04-19 15:00 cpcpc 阅读(2086) 评论(0) 推荐(0) 编辑
摘要: ?? 运算符(C# 参考)?? 运算符称为 null 合并运算符,用于定义可以为 null 值的类型和引用类型的默认值。 如果此运算符的左操作数不为 null,则此运算符将返回左操作数;否则返回右操作数。View Code 1 class NullCoalesce 2 { 3 static int? GetNullableInt() 4 { 5 return null; 6 } 7 8 static string GetStringValue() 9 {10 return null;11 }12 13 ... 阅读全文
posted @ 2012-04-19 14:58 cpcpc 阅读(625) 评论(0) 推荐(0) 编辑
摘要: (http://www.cnblogs.com/kidon/archive/2006/09/06/495936.aspx)IntroductionSometimes, I run across the need to dynamically invoke the method of an object, where the actual method might not be known until run-time. Usually, Reflecting is nice, but frequently doing it can be too slow. This article descr 阅读全文
posted @ 2012-04-19 14:33 cpcpc 阅读(275) 评论(0) 推荐(0) 编辑