Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a MOSS 2007 Page that displays some HTML from the root site's ReusableContent list. A copy of the page is on several subsites and the reusable content needs to contain delimited values that get replaced with subsite specific values. So I want to create some kind of custom element that can be placed in the page to parse the reusable content and replace delimited place holders with the site-specific values.

First I'm going to need a little help figuring out how it's working now because I'm not all that great with SharePoint. In the PageLayout for the page, I see a RichHtmlField in the spot where the reusable content is injected.

<PublishingWebControls:RichHtmlField FieldName="PublishingPageContent" runat="server"></PublishingWebControls:RichHtmlField>

This displays in the SharePoint Designer designer window as a box labeled "Page Content". If I add another RichHtmlField:

<PublishingWebControls:RichHtmlField FieldName="PublishingPageContent2" runat="server"></PublishingWebControls:RichHtmlField>

The designer labels its box PublishingPageContent2. Similarly if I edit the page in the browser, the editable area containing the reusable content is labeled Page Content and the second RichHtmlField that I added does not appear. So my first question is what is choosing the RichHtmlField with the FieldName "PublishingPageContent" as the official Page Content and why?

The following question will be is there a way to replace this editable area with a custom one that looks the same when editing in the browser (including allowing you to pop open a new window to select reusable content), but executes my code that parse the reusable content when the page loads?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.