kentico_jurajo
-
2/4/2009 2:28:10 AM
RE:Set value of CMSEditableRegion
Hi,
You would need to use following code in OnPreRender method of your aspx template:
protected override void OnPreRender(EventArgs e) { base.OnPreRender(e); this.MainContentText.LoadContent("some text"); }
where MainContentText is ID of your editable region control.
Best Regards, Juraj Ondrus
|