I'm trying to update the value of a textbox with the following code.
ReportViewer1.Report = (Telerik.Reporting.Report)new AllItems();
Telerik.Reporting.TextBox txt = (Telerik.Reporting.TextBox)ReportViewer1.Report.Items["txtTitle"];
txt.Value = "wow";
It errors out giving a "The expression contains object 'ID' that is not defined in the current context."
Can this be done?