문제

So I have the standard Content Editor Webpart (MSContentEditor.dwp). The title i can set via webPart.Title (MSDN).

I can't find any property where I would set the content editor's content.

I basically want to provision the webpart to a publishing page (done), set it's title so something (done) and set some default content for it (stuck on this one). Any help is appreciated.

도움이 되었습니까?

해결책

ContentEditorWebPart wp = ....

XmlDocument xDoc = new XmlDocument();
var contentRoot = xDoc.CreateElement("ContentRoot");
contentRoot.InnerText = "Your text here";
wp.Content = contentRoot

http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.webpartpages.contenteditorwebpart.content.aspx

다른 팁

Here you go :)

ContentEditorWebPart.Content Property

You might need to cast your WebPart to ContentEditorWebPart if you can't see this property.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top