I have loading panel like this:
<telerik:RadAjaxLoadingPanel ID="ralpLoadingImage" Width="100%" Height="100%" BackImageUrl="images/i_blank.gif" runat="server" Transparency="25">
<asp:Image ID="imgLoading" runat="server" AlternateText="Loading..." ImageUrl="~/images/loading_blue.gif" style="margin-top:10px" />
</telerik:RadAjaxLoadingPanel>
I want to set different message like "Loading for John..." instead of "Loading..." for everyone. So here John is a value I want to passed in.
Is it possible to do this?
<telerik:RadAjaxLoadingPanel ID="ralpLoadingImage" Width="100%" Height="100%" BackImageUrl="images/i_blank.gif" runat="server" Transparency="25">
<asp:Image ID="imgLoading" runat="server" AlternateText="Loading..." ImageUrl="~/images/loading_blue.gif" style="margin-top:10px" />
</telerik:RadAjaxLoadingPanel>
I want to set different message like "Loading for John..." instead of "Loading..." for everyone. So here John is a value I want to passed in.
Is it possible to do this?