I'm sure I'm missing something obvious here, but I'm trying to set the text on a HtmlTextBox on its ItemDataBound event. I set the Value property, but the output does not change from the default text. This works with a TextBox, so I'm not sure what is different with the HtmlTextBox.
Yet the HtmlTextBox outputs the default value.
Thanks for any help / clarification.
private void htmlTextBox1_ItemDataBound(object sender, EventArgs e) { Telerik.Reporting.Processing.HtmlTextBox txtBox = (Telerik.Reporting.Processing.HtmlTextBox)sender; txtBox.Value = "Updated"; }
Yet the HtmlTextBox outputs the default value.
Thanks for any help / clarification.