I have an usercontrol with fck editor for allowing user to add note in my aspx page, which allows the user all kind of text formatting.My need is that I have to access user control from the code behind and collect the content as the same format some one has entered in the fck editor.How can I do this?
Share
I’ll elaborate on Brian’s answer. You need to expose the content from the UserControl by adding a public property:
Then to get the content from the user control, just called the property from the Page’s code beind: