Hi,
Is it possible to update a label that is wrapped in a RadAjaxPanel with code behind? I.e.:
ASP.NET:
Is it possible to update a label that is wrapped in a RadAjaxPanel with code behind? I.e.:
ASP.NET:
<
telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" height="200px" width="300px"> <asp:Label ID="Connections" runat="server" Text="0"></asp:Label> </telerik:RadAjaxPanel>
C# code :
Connections.text = "100";
I can't get this to work unless I do a postback which is obviously not what I want.
I know this will probably work if I have a timer event and do it in that, but don't want to use one.
Any help is much appreciated.
Regards,
Steve