As default, the feature AJAX of MOSS2007 is disabled, so the site web configuration file should be modified to enable AJAX to achieve the auto complete functionality. The following are steps how to enable it.

Option 1: Modify it manually

step1: Open the web.config file, find out the <configSections> section then fill content out in the section below:

<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</sectionGroup>
</sectionGroup>
</sectionGroup>
<section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="true" />
</configSections>

Step2:Find the <pages> section then add the declaration of control below

<controls>
<add tagPrefix="asp" tagName="" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0,Culture=neutral,PublicKeyToken=31bf3856ad364e35" />
</controls>

Step3:Add the declaration of the assembly inside <assemblies> section

<add assembly="System.Web.Extensions, Version=3.5.0.0,Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

Step4: Add predicate handler in the <httphandlers> section:

 <add path="*.asmx" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory,System.Web.Extensions, Version=3.5.0.0, Culture=neutral,  PublicKeyToken=31bf3856ad364e35" validate="false" />
<add path="*.AppService.axd" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />
<add path="ScriptSource.axd" verb="GET,HEAD" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />

Step5: Add script module inside the <httpModules> section as below:

<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions,  Version=3.5.0.0, Culture=neutral,   PublicKeyToken=31bf3856ad364e35" />

Step6:Add logging configuration inside  <configuration> section:

<loggingConfiguration name="" tracingEnabled="true" defaultCategory="General">
<listeners>
<add name="Flat File Trace Listener" type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.FlatFileTraceListener,
Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.FlatFileTraceListenerData,
Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
fileName="C:\trace.log" traceOutputOptions="DateTime" />
</listeners>
<formatters>
<add type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter,
Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
template="Timestamp: {timestamp}{newline} Message: {message}{newline} Category: {category}{newline} Priority:
{priority}{newline} EventId: {eventid}{newline} Severity: {severity}{newline} Title:{title}{newline} Machine:
{localMachine}{newline} App Domain: {localAppDomain}{newline} ProcessId: {localProcessId}{newline} Process Name:
{localProcessName}{newline} Thread Name: {threadName}{newline} Win32 ThreadId:{win32ThreadId}{newline} Extended Properties:
{dictionary({key} - {value}{newline})}" name="Text Formatter" />
</formatters>
<categorySources>
<add switchValue="All" name="General">
<listeners>
<add name="Flat File Trace Listener" />
</listeners>
</add>
</categorySources>
<specialSources>
<allEvents switchValue="All" name="All Events" />
<notProcessed switchValue="All" name="Unprocessed Category" />
<errors switchValue="All" name="Logging Errors &amp; Warnings">
<listeners>
<add name="Flat File Trace Listener" />
</listeners>
</errors>
</specialSources>
</loggingConfiguration>

Option 2: Modify it automaticall by Feature

public class WebConfigModification
{
private SPSite _site = null;
public WebConfigModification(SPSite site)
{
this._site = site;
}
/// <summary>
/// open the web.config file, find out the configSections section then fill in the section
/// </summary>
private void ModifyConfigSections(Configuration config)
{
try
{
ConfigurationSectionGroup sectionGroup = config.GetSectionGroup("system.web.extensions");
if (sectionGroup == null)
{
SystemWebExtensionsSectionGroup topGroup = new SystemWebExtensionsSectionGroup();
config.SectionGroups.Add("system.web.extensions", topGroup); ScriptingSectionGroup scriptingGroup = new ScriptingSectionGroup();
topGroup.SectionGroups.Add("scripting", scriptingGroup); ScriptingScriptResourceHandlerSection scriptResourceHandler = new ScriptingScriptResourceHandlerSection();
scriptingGroup.Sections.Add("scriptResourceHandler", scriptResourceHandler); ScriptingWebServicesSectionGroup webServiceGroup = new ScriptingWebServicesSectionGroup();
scriptingGroup.SectionGroups.Add("webServices", webServiceGroup); ScriptingJsonSerializationSection jsonSerialization = new ScriptingJsonSerializationSection();
webServiceGroup.Sections.Add("jsonSerialization", jsonSerialization); ScriptingProfileServiceSection profileService = new ScriptingProfileServiceSection();
webServiceGroup.Sections.Add("profileService", profileService); ScriptingAuthenticationServiceSection authenticationService = new ScriptingAuthenticationServiceSection();
webServiceGroup.Sections.Add("authenticationService", authenticationService);
config.Save();
}
}
catch (Exception ex)
{
throw new Exception("ModifyConfigSectons error :" + ex.Message);
}
} /// <summary>
/// find the pages section then add the declaration of control
/// </summary>
private void ModifyPagesSection(Configuration config)
{
try
{
bool prefixExists = false;
PagesSection pagesSection = (PagesSection)config.GetSection(@"system.web/pages");
for (int i = ; i < pagesSection.Controls.Count; i++)
{
TagPrefixInfo prefix = pagesSection.Controls[i];
if (prefix.TagPrefix.ToLower().Trim() == "asp" && prefix.Namespace.ToLower().Trim() == "system.web.ui")
{
prefixExists = true;
break;
}
}
if (!prefixExists)
{
TagPrefixInfo prefixInfo = new TagPrefixInfo("asp", "System.Web.UI", "System.Web.Extensions, Version=3.5.0.0,Culture=neutral,PublicKeyToken=31bf3856ad364e35", "", "");
pagesSection.Controls.Add(prefixInfo);
config.Save();
}
}
catch (Exception ex)
{
throw new Exception("MOdifyPagesSection error: " + ex.Message);
}
} /// <summary>
/// add the declaration of the assembly inside assemblies section
/// </summary>
private void ModifyAssemblies(Configuration config)
{
try
{
bool assemblyexists = false;
CompilationSection compilationSection = (CompilationSection)config.GetSection(@"system.web/compilation");
AssemblyInfo newAssembly = new AssemblyInfo("System.Web.Extensions, Version=3.5.0.0,Culture=neutral, PublicKeyToken=31bf3856ad364e35");
for (int i = ; i < compilationSection.Assemblies.Count; i++)
{
AssemblyInfo assembly = compilationSection.Assemblies[i];
if (assembly.Equals(newAssembly))
{
assemblyexists = true;
break;
}
}
if (!assemblyexists)
{
compilationSection.Assemblies.Add(newAssembly);
config.Save();
}
}
catch (Exception ex)
{
throw new Exception("ModifyAssemblies error: " + ex.Message);
}
} /// <summary>
/// add the declaration of the assembly inside assemblies section
/// </summary>
private void ModifyHttpHandlers(Configuration config)
{
try
{
List<HttpHandlerAction> handlers = new List<HttpHandlerAction>();
HttpHandlersSection handlersSection = (HttpHandlersSection)config.GetSection(@"system.web/httpHandlers");
HttpHandlerAction asmxHandlerAction = new HttpHandlerAction("*.asmx", "System.Web.Script.Services.ScriptHandlerFactory,System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "*", false);
handlers.Add(asmxHandlerAction); HttpHandlerAction appServiceHandlerAction = new HttpHandlerAction("*.AppService.axd", "System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "*", false);
handlers.Add(appServiceHandlerAction); HttpHandlerAction getHeadHandlerAction = new HttpHandlerAction("ScriptSource.axd", "System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "GET,HEAD", false);
handlers.Add(getHeadHandlerAction); bool handlerActionExists = false;
foreach (HttpHandlerAction handlerAction in handlers)
{
for (int i = ; i < handlersSection.Handlers.Count; i++)
{
if (handlersSection.Handlers[i].Equals(handlerAction))
{
handlerActionExists = true;
}
}
if (!handlerActionExists)
{
handlersSection.Handlers.Add(handlerAction);
config.Save();
} }
}
catch (Exception ex)
{
throw new Exception("ModifyHttpHandlers error: " + ex.Message);
}
} /// <summary>
/// add script module inside the httpModules section
/// </summary>
private void ModifyModules(Configuration config)
{
try
{
HttpModulesSection modulesSection = (HttpModulesSection)config.GetSection("system.web/httpModules");
HttpModuleAction moduleAction = new HttpModuleAction("ScriptModule", "System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"); bool moduleExists = false;
for (int i = ; i < modulesSection.Modules.Count; i++)
{
if (modulesSection.Modules[i].Name.ToLower().Trim() == moduleAction.Name.ToLower().Trim())
{
moduleExists = true;
}
}
if (!moduleExists)
{
modulesSection.Modules.Add(moduleAction);
config.Save();
} }
catch (Exception ex)
{
throw new Exception("MOdifyModules error: " + ex.Message); } } /// <summary>
/// add safecontrol to the web.config
/// </summary>
/// <param name="site"></param>
private void RegisterSafeControl()
{
try
{
if (_site != null)
{
SPSecurity.RunWithElevatedPrivileges(() =>
{
SPWebApplication webApp = _site.WebApplication; // Create a modification
SPWebConfigModification mod = new SPWebConfigModification(
"SafeControl[@Assembly=\"System.Web.Extensions, Version=3.5.0.0, Culture=neutral,PublicKeyToken=31bf3856ad364e35\"][@Namespace=\"System.Web.UI\"]"
+ "[@TypeName=\"*\"][@Safe=\"True\"][@AllowRemoteDesigner=\"True\"]"
, "/configuration/SharePoint/SafeControls"
);
mod.Owner = "PeopleSearch";
mod.Sequence = ;
mod.Type = SPWebConfigModification.SPWebConfigModificationType.EnsureChildNode;
mod.Value = "<SafeControl Assembly='System.Web.Extensions, Version=3.5.0.0, Culture=neutral,PublicKeyToken=31bf3856ad364e35' Namespace='System.Web.UI' TypeName='*' Safe='True' />"; // Add the modification to the collection of modifications //bool exists = false;
//foreach (SPWebConfigModification modificartion in webApp.WebConfigModifications)
//{
// if (modificartion.Name == mod.Name)
// {
// exists = true;
// break;
// }
//}
//if (!exists)
{ webApp.WebConfigModifications.Add(mod);
webApp.Update();
// Apply the modification
webApp.Farm.Services.GetValue<SPWebService>().ApplyWebConfigModifications();
}
});
}
}
catch (Exception ex)
{
throw new Exception("Register SafeControl error: " + ex.Message);
}
} /// <summary>
/// modify all
/// </summary>
/// <param name="config"></param>
public void ModifiedToEnableAJAX(Configuration config)
{
if (config == null)
{
return;
}
ModifyModules(config);
ModifyPagesSection(config);
ModifyHttpHandlers(config);
ModifyConfigSections(config);
ModifyAssemblies(config);
//RegisterSafeControl();
} public void RemoveSafeControl()
{
try
{
if (_site != null)
{
SPSecurity.RunWithElevatedPrivileges(() =>
{
SPWebApplication webApp = _site.WebApplication;
Collection<SPWebConfigModification> modsCollection = webApp.WebConfigModifications;
SPWebConfigModification configModFound = null;
// Find the most recent modification of a specified owner
int modsCount1 = modsCollection.Count;
for (int i = modsCount1 - ; i > -; i--)
{
if (modsCollection[i].Owner == "PeopleSearch")
{
configModFound = modsCollection[i];
}
} // Remove it and save the change to the configuration database
modsCollection.Remove(configModFound);
webApp.Update(); // Reapply all the configuration modifications
webApp.Farm.Services.GetValue<SPWebService>().ApplyWebConfigModifications(); });
}
}
catch (Exception ex)
{
throw new Exception("Remove SafeControl error: " + ex.Message);
}
}
}
public override void FeatureActivated(SPFeatureReceiverProperties properties)
{
SPSite site = null; try
{
// Get a reference to the Site Collection of the feature
if (properties.Feature.Parent is SPSite)
{ site = properties.Feature.Parent as SPSite; } if (site != null)
{
string path = site.WebApplication.IisSettings[SPUrlZone.Default].Path.ToString();
BackUpConfiguration(path); Configuration config = WebConfigurationManager.OpenWebConfiguration("/"); string logConfigPath = string.Empty;
var obj = config.AppSettings.Settings["logConfigPath"];
if (null != obj)
{
logConfigPath = obj.ToString();
}
ConfigLogSettings(path, logConfigPath);
//config.SaveAs(Path.Combine(path, fileName), ConfigurationSaveMode.Minimal, true); WebConfigModification modification = new WebConfigModification(site);
modification.ModifiedToEnableAJAX(WebConfigurationManager.OpenWebConfiguration("/"));
}
}
catch (Exception ex)
{
TraceLog.Error(ex.Message);
}
}
}

enable feature AJAX of MOSS2007的更多相关文章

  1. ajax cache enable and ajax concurrency!

    Today, forget to close ajax cache which leads to duplicate result from cache as to Jquery, this way, ...

  2. 怎样用命令行管理SharePoint Feature?

    普通情况下对IT管理者来说.在SharePoint Farm中维护Feature,更喜欢使用命令行实现,这样能够省去登录到详细网站的操作. 比方IT接到end user的一个需求,要开启Site Co ...

  3. IP-reputation feature

    IP-reputation feature https://blog.norz.at/citrix-netscaler-ip-reputation-feature/ I recently had to ...

  4. A javascript library providing cross-browser, cross-site messaging/method invocation. http://easyxdm.net

    easyXDM - easy Cross-Domain Messaging easyXDM is a Javascript library that enables you as a develope ...

  5. How To Configure NetScaler AppFlow for SolarWinds

    How To Configure NetScaler AppFlow for SolarWinds 来源  https://support.citrix.com/article/CTX227300 A ...

  6. 使用Ztree新增角色和编辑角色回显

    最近在项目中使用到了ztree,在回显时候费了点时间,特记录下来供下次参考. 1.新增角色使用ztree加载权限,由于权限不多,所以使用直接全部加载. 效果图: 具体涉及ztree代码: jsp中导入 ...

  7. MPS添加管理设备实例NS的过程

    MPS添加管理设备实例NS的过程 MPS添加实例NS设备节点: > show snmp community Done > > add snmp community public al ...

  8. MPSVPX 配置

    MPSVPX 配置 设置主机名,IP地址,掩码,网关,DNS服务器,时区(使用WebGUI界面设置). bash-2.05b# cat svm.conf arp -d -a route flush i ...

  9. Autotools Mythbuster

    Preface Diego Elio "Flameeyes" Pettenò Author and Publisher <flameeyes@flameeyes.eu> ...

随机推荐

  1. [OSG]矩阵运算

    我们都知道,OpenGL规定矩阵使用列主序存储,即glLoadMatrix等函数要求输入的数组是按列主序存储的矩阵.然而,一个很奇怪的事实是,OSG中矩阵存储是使用的标准C二维数组(行主序),并且也是 ...

  2. sql中批量删除带有外键的所有表

    1首先删除所有的外检约束 --删除所有外键约束 DECLARE c1 cursor forselect 'alter table ['+ object_name(parent_obj) + '] dr ...

  3. [DL学习笔记]从人工神经网络到卷积神经网络_2_卷积神经网络

    先一层一层的说卷积神经网络是啥: 1:卷积层,特征提取 我们输入这样一幅图片(28*28): 如果用传统神经网络,下一层的每个神经元将连接到输入图片的每一个像素上去,但是在卷积神经网络中,我们只把输入 ...

  4. WIX

    1. Create msi File http://www.cnblogs.com/lienhua34/archive/2012/10/07/2714367.html 2. information a ...

  5. Photoshop学习笔记(待续)

    1. 界面设置 新建 设置 自动选择快捷键:单击时按住cmd 标尺和智能参考线 右侧的四大面板 单位与标尺 保存工作区 其他 每一种颜色模式对应一种媒介 HSB(色相.饱和度.亮度) => 人眼 ...

  6. [转]表结构设计器EZDML介绍说明(包含修改配置文件,修改文本字段属性)

    超轻量级的表结构设计工具,这是一个数据库建表的小软件,可快速的进行数据库表结构设计,建立数据模型.类似大家常用的数据库建模工具如PowerDesigner.ERWIN.ER-Studio和Ration ...

  7. 6.如何使用官方提供的nuget包实现cookie登陆

    "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0", 这里需要用到的是这个nuget包 public ...

  8. JavaScript对象的chapterII

    一.BOM对象 1.window对象——表示整个浏览器窗口 常用方法: a)alert()——系统消息框 alert('Hello World'); b)确认对话框——confirm() confir ...

  9. Missing artifact com.microsoft.sqlserver:sqljdbc4:jar:4.0

    maven构建项目的时候遇到这个错误: 一.直接原因 制定路径下确实没有sqljdbc4.jar文件. 二.根本原因 微软不允许以maven的方式直接下载该文件. 三.解决办法 3.1 手动下载相关库 ...

  10. Usage: AddDimensionedImage imageFile outputFile eclipse 运行程序出错

    关于这个在eclipse中运行java程序的错,首先确认你的jdk,jre是否完整,并且与你的eclipse的位数相同,当然我相信这个错误大家应该都会去检查到. 第二个关于addDimensioned ...