I have a custom webpart that contains three editabletext webparts.
When I invoke the method GetContent, I get always null.
Moreover, the method GetContent of the CMSControl ucEditableText (inside the webpart) returns null.
The following code fixes the issue, but i'd like not to use it:
var x = ucEditableText.FindControl("ltlContent") as Literal;
if (x != null)
return x.Text;
How can I fix it? I tried to use the CMSEditableRegion, but it loses the current content of the editabletext webparts.
Many thanks
Regards
Emanuele Firmani