Oct 25, 2010
  7991
(5 votes)

EPiServer Search and Replace Plug-in Released

A couple of months ago myself and a couple of my colleagues were discussing features that are currently missing from EPiServer CMS.  One feature clients often request is a global search and replace feature.

After the discussion I thought this sounded like an interesting task, so I decided I would attempt to create a plug-in to do this.  Several weeks later after building the plug-in during my commute to and from work it is available for everybody to use Smile.  Hooray you all cry!

The plug-in will work in EPiServer CMS 6 and later and will search and replace both page type and dynamic properties. 

The plug-in is careful in what it updates and will not mess with XHTML/serialized XML structures.  A regex is used to determine whether the content is xml or not and if it is only attribute values and text nodes are updated.

The plug-in currently does not search and replace dynamic content, it’s something I have looked into but could open a big can of worms so I have left it for now.

To install it is as simple as copying an assembly to your bin folder and adding some configuration settings to your web.config.

Please feel free to download the plug-in and give it a try.  All feedback, suggested enhancements will be greatly received… Apart from negative feed back Winking smile.

The assemblies and source code if required can be found here http://episerversap.codeplex.com/

Installation/Usage instructions can be found here.

Oct 25, 2010

Comments

Deane Barker
Deane Barker Oct 25, 2010 05:24 PM

How are you ensuring they don't replace text not in a tag, for HTML properties? For instance, if someone replaces "table" with "chair," how do you make sure they don't replace all the TABLE tags too?

Oct 25, 2010 06:08 PM

Hi Deane

The search and replace code determines whether the text is xhtml/xml and if it is it uses an Sgml reader to parse the html into a document.

The code then selects all nodes in the document '//*' and then iterates through each of them.

For each node it then gets the text nodes 'text()' and updates the text values and then iterates the attributes and updates there values. This ensures there is no risk of harming the tags :)

Lee

Oct 25, 2010 06:18 PM

This is excellent Lee, looking forward to trying it out.

Janne Tuutti
Janne Tuutti May 16, 2013 02:20 PM

Hi Lee,

I am currently trying to get this working but have run against error on after logging to CMS edit mode:


Compiler Error Message: CS0118: 'FortuneCookie.EPiServer.SearchAndReplace.SearchAndReplacePlugin.List()' is a 'method' but is used like a 'type'

Source Error:


Line 215: <%#server.htmlencode(eval("find").tostring())%>
Line 216: <%#server.htmlencode(eval("replace").tostring())%>
Line 217: <%#((list>)Eval("Pages")).Count%>
Line 218: <%#((list>)Eval("DynamicProperties")).Count%>
Line 219: <%#((datetime)eval("created")).tostring("dd mm yyyy hh:mm:ss>


Source File: /Templates/Plugins/SearchAndReplace.ascx Line: 217


My solution is built with Visual Studio 2008 and .Net Framework 3.5 and am trying to run the SearchAndReplace against EPiServer 6 site. I've extracted the dll's and configs from NugetPkg with VS2010 and added them by hand in my VS2008 solution. Is there any hope for me to get it working they way I'm attempting?

Thanks in advance,
Janne


Please login to comment.
Latest blogs
Optimizely CMS 13 and the Alloy demo site

The Alloy demo site now runs on Optimizely CMS 13. Here’s a quick guide to getting it up and running locally.

Tomas Hensrud Gulla | Apr 10, 2026 |

A day in the life of an Optimizely OMVP: Getting Up to Speed with Optimizely CMS 13 — A Free Learning Path

If you're working with Optimizely and haven't started exploring CMS 13 yet, now's the time. I've put together a dedicated CMS 13 course within the...

Graham Carr | Apr 10, 2026

A day in the life of an Optimizely OMVP: Optimizely CMS 13 Is Here: The Features, The Add-Ons, and What's Coming Next

CMS 13 went GA on 31st March 2026, and after months of previews, webinars, and internal engineering sessions, it's finally real. I've been deep in...

Graham Carr | Apr 10, 2026

How to get the Page Tree back in Optimizely CMS

Lost the page tree in Optimizely CMS? Here's why it happens and the non-obvious fix to get it back.

Henning Sjørbotten | Apr 10, 2026 |