1、MOSS SP1安装(WSS,MOSS)

2、QucikPart安装and激活

3、下载并安装stsadm.ajaxifymoss自动配置web.config
http://www.codeplex.com/ajaxifymoss/Release/ProjectReleases.aspx?ReleaseId=13360

2.1      下载StsAdm.AjaxifyMoss.zip并解压,先执行deploy.cmd后执行upgrade.cmdStsAdm.AjaxifyMoss.zip必须在同一个文件夹内)

2.2      使用stsadm运行ajaxifying(默认在C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN
全部命令如下
- add asp.net ajax to web.config

stsadm -o addajax -url http://your.moss.webapplication

 

-remove asp.net ajax from web.config

stsadm -o removeajax -url http://your.moss.webapplication

 

- add .Net 3.5 ajax to web.config

stsadm -o addajax35 -url http://your.moss.webapplication

 

-remove .Net 3.5 ajax from web.config

stsadm -o removeajax35 -url http://your.moss.webapplication

 

备注:
add .Net 3.5 ajax

手工添加如下代码放在<dependentAssembly>代码块前面位置

<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions"
publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0"
newVersion="3.5.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions.Design"
publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0"
newVersion="3.5.0.0" />
</dependentAssembly>