Ok, so this seems like a pretty normal operation, but my label is not getting populated with the RadEditor.Content .. why would this be?
I am using a wizard control and in the second to last WizardStep (Step5) I have 6 small RadEditors.
Then I run the following
| Protected Sub WizardStep6_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles WizardStep6.Load |
| 'Descriptions from Editor |
| lblDetails69.Text = txtBusinessDescription.Content |
| lblDetails70.Text = txtMarketDescription.Content |
| lblDetails71.Text = txtFinancialDescription.Content |
| lblDetails72.Text = txtIncluded.Content |
| lblDetails73.Text = txtReasonForSale.Content |
| lblDetails74.Text = txtOtherInfo.Content |
| End Sub |
But the details labels do not get populated with any content... does anyone have an answer?