Forms and WebForms

So you have upgraded your WebForms site to EPiServer 9 because your customer would love to use the new Forms module. Of course you can’t as the new Forms module does not support WebForms, which yo may have overlooked, as I did. I personally don’t understand why it's not supported, as the CMS still supports … Continue reading Forms and WebForms

Indexing Blocks with EPiServer Search, revisited

While back I blogged about Indexing Blocks with EPiServer Search, this is one of my most read posts, and I use it a lot myself. But I got tired of copying the code every time, so I decided to make it more generic. I created an attribute called "AdditionalSearchContent". When publishing I look for the … Continue reading Indexing Blocks with EPiServer Search, revisited

Indexing Blocks with EPiServer Search, part 2

While back I blogged about indexing blocks with EPiServer Search. Last week someone told me it might be useful to republish the pages containing the Block automatically when a Block is updated, so the search index will also be updated. To do this, just add another event handler that responds to a Block being published. … Continue reading Indexing Blocks with EPiServer Search, part 2

Indexing Blocks with EPiServer Search

This week I needed to add Blocks used on a page to EPiServer Search Index as content of the page they were used on. This is supported in Find, but as we are not using Find in this project, I needed a different solution. First I added an extra property to my base class to … Continue reading Indexing Blocks with EPiServer Search