Hello,
I have been trying [unsuccessfully] to update an asp:Label control in the Masterpage dialog from my web page code file.
I can get a reference to the dialog and update the HeaderHtml property, but I have not been able to update the label controls .Text in the ContentTemplate from the page code file.
Here's how I am writing to the .HeaderHtml property:
Code: C#
EO.Web.Dialog ErrorDialog = (EO.Web.Dialog)Master.FindControl("eo_dlg_ErrorMessage");
ErrorDialog.HeaderHtml = "Message Header";
// how do I access the <asp:Label control from here...
How would I access, and update the Dialog ContentTemplate controls?
Thanks