Do you know common web configuration stuff you will need?
Last updated by Brady Stroud [SSW] 7 months ago.See historyIn SharePoint, web configuration includes:
- ASP.NET 3.5/4.0 library references – this is necessary for all the ASP.NET AJAX calls
- Add system.web/pages/controls – to add additional tag prefix from System.W eb.Extensions
- Add HttpModule (for example – to clean up extra JavaScript from SharePoint)
- SafeControl tags for all custom dlls – in general these can be added via your solution package as well
You should always use a SPConfigModification class to modify your web.config – never tell your user or administrator to make changes manually! This also allows them to switch off a feature from SharePoint knowing that the changes had been reverted. For developers – you must test your SPConfigModification carefully, mismatched XPath will cause problems in your web.config and create duplicate entries!