SharePoint Server 2007: Field Controls & Web Parts Compared

Comparison of field controls and web parts in SharePoint Server 2007 Publishing sites - Author shares related posts and articles for details.

In the past I’ve written a lot about the differences between using field controls and Web Parts in SharePoint Server 2007 Publishing sites. For more info, you can read this blog post on the ECM team blog ( cross posted here ) or my article on MSDN about Prescriptive Guidance for SharePoint Server 2007 Web Content Management Sites . I won’t rehash the reasons why you should not use Web Parts for content here… go read those posts for more details…

However, I want to call out one Web Part in particular that causes the most issues in Publishing sites: the Content Editor Web Part (CEWP). AFAIK, this Web Part comes as close to pure evil in Publishing sites as possible for numerous reasons. Links are stored as absolute rather than relative, the content isn’t versioned with the page… I could go on. So what to do about it?

Developers and designers creating page layouts have a few options:

  • Don’t add any Web Part Zones to page layouts: then you can’t use CEWP’s, but you can’t use other Web Parts that you might want to let your content owners use. Not a terribly good option.
  • Delete the CEWP definition from the site collection’s Web Part Gallery: but this isn’t fool proof as savvy users could still import the Web Part directly into a Web Part Zone through the browser.

Thankfully there is a better option, one I like to use on most of the sites I create for customers. It is fool proof and still allows the use of desirable Web Parts in content pages. All you do is go into the web.config for the Web application where your Publishing site resides and add an entry to the section to flag the CEWP as being unsafe:

Now, if you try to add the CEWP to a Web Part Zone, you get this:

Content Editor Web Part

Content Editor Web Part

I’ve got a Web Application scoped Feature that will do this for you. The WSP, and source if you’re interested, is up on MSDN Code Gallery: http://code.msdn.microsoft.com/ProhibitCEWP . The Feature looks like this once the solution is deployed:

Content Editor Web Part

Content Editor Web Part

Activating adds the entry to the web.config and deactivating removes it.

Andrew Connell
Developer & Chief Course Artisan, Voitanos LLC. | Microsoft MVP
Written by Andrew Connell

Andrew Connell is a web & cloud developer with a focus on Microsoft Azure & Microsoft 365. He’s received Microsoft’s MVP award every year since 2005 and has helped thousands of developers through the various courses he’s authored & taught. Andrew’s the founder of Voitanos and is dedicated to helping you be the best Microsoft 365 web & cloud developer. He lives with his wife & two kids in Florida.

Share & Comment