摘要: 原文地址:http://www.cnblogs.com/xiyou110/archive/2008/07/16/1244377.htmlnull是C#关键字,是表示不引用任何对象的空引用的文字值。null 是引用类型变量的默认值。 DBNULL表示类,表示空值. 该类用于指示不存在某个已知值(通常在数据库应用程序中)。 在数据库应用程序中,空对象是字段的有效值。该类区分空值(空对象)和未初始化值(... 阅读全文
posted @ 2010-04-08 13:42 玛雅人 阅读(298) 评论(0) 推荐(0)
摘要: msiexec.exe /a c:\rktools.msi s/qb targetdir=c:\tmp 阅读全文
posted @ 2010-03-18 16:43 玛雅人 阅读(584) 评论(0) 推荐(0)
摘要: sharepoint 如何制作 上传 安装 “网站模板” 和 “网站集模板” 小解释一下:所谓“网站模板” 就是 在网站集中 创建“子网站”时候 供选择的模板、所有“网站集模板” 就是 创建“网站集”时候 供选择的模板、先说“网站模板&rdqu... 阅读全文
posted @ 2010-03-18 16:03 玛雅人 阅读(1047) 评论(0) 推荐(1)
摘要: DownLoad:Windows SharePoint Services 3.0 x64 Service Pack 2  URL:http://www.microsoft.com/downloads/details.aspx?familyid=9FB41E51-CB03-4B47-B89A-396786492CBA&displaylang=zh-cnWindows SharePoint S... 阅读全文
posted @ 2010-03-15 17:32 玛雅人 阅读(570) 评论(0) 推荐(1)
摘要: Windows SharePoint Services 3.0 应用程序模板:所有服务器管理模板http://www.microsoft.com/downloads/details.aspx?familyid=AAE4CB5A-91D2-4F1B-9A45-3BB894E218F8&displaylang=zh-cn 阅读全文
posted @ 2010-03-15 11:30 玛雅人 阅读(448) 评论(0) 推荐(1)
摘要: 原文:http://hi.baidu.com/sinhui/blog/item/ef1bdaefef84bd31adafd528.html//Program.csusing System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication1Text{ class Program { stat... 阅读全文
posted @ 2010-03-15 11:25 玛雅人 阅读(2169) 评论(0) 推荐(0)
摘要: URL: http://technet.microsoft.com/zh-cn/library/cc708558(WS.10).aspxsqlcmd -S np:\\.\pipe\MSSQL$MICROSOFT##SSEE\sql\queryuse masteralter database SUSDB set single_user with rollback immediategosp_deta... 阅读全文
posted @ 2010-03-12 15:15 玛雅人 阅读(234) 评论(0) 推荐(0)
摘要: 原文:http://community.bamboosolutions.com/blogs/sharepoint_blank/archive/2009/01/08/how-to-export-amp-import-web-parts-in-sharepoint.aspxWhilebloggingmy continuing investigation into whether or not it's... 阅读全文
posted @ 2010-03-10 17:02 玛雅人 阅读(515) 评论(0) 推荐(0)
摘要: static 修饰的变量意味着它属于类级别,不需要实例化就可以直接通过 类名.变量名 来用。const 默认是 static 类型,因此属于类级别,它的特点是在编译的时候用const修饰的变量的值就已经是明确知道的定值,而不能是一个计算表达式。而且,只能在声明的时候给定它的值,以后都不可以改。readonly 不是static类型,属于实例级别,因此不能通过 类名.变量名 来用。只能通过 实例.变... 阅读全文
posted @ 2010-03-05 10:26 玛雅人 阅读(495) 评论(1) 推荐(0)
摘要: Integrating ASP.NET AJAX with SharePoint上面的文章介绍了ASP. NET AJAX 1.0的使用如果你的机器安装的是3.5的版本,就需要修改一下了,基本流程一致。1.Add a <sectionGroup>element to the <configSections>tag:sectionGroup <sectionGroup ... 阅读全文
posted @ 2010-02-25 15:52 玛雅人 阅读(461) 评论(1) 推荐(1)