Hi: I'm experimenting with the ckeditor.net user control, and it's not clear to me how to set properties or methods from code-behind on a webform (vb.net).
I'm trying to set the toolbar and reference a custom stylesheet for the control, but it isn't being picked up when the page is rendered. For example I'm trying:
Dim ckBody As CKEditorControl = CType(listview1.InsertItem.FindControl("ckBody"), CKEditorControl)
ckBody.Text = "my text here"
ckBody.ToolbarBasic = True
ckBody.ContentsCss = "~/Styles/article.css"
The control is rendering with "my text here" in the text pane, but the toolbar and stylesheet are unchanged.
What is the correct syntax for modifying the properties in code-behind?