Hi,
I need to be able to construct the following control completely from C# code (not declaratively):
I need to be able to construct the following control completely from C# code (not declaratively):
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Height="100%" Width="75px" Transparency="50">
<table style="height: 100%; width: 100%" border="0">
<tr>
<td width="100%" align="center" valign="middle">
<img src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading2.gif") %>' alt="" style="border: 0px;" />
</td>
</tr>
</table>
</telerik:RadAjaxLoadingPanel>
Any ideas? I can find no way to access the template portion of the RadAjaxLoadingPanel from code.
-Al