You can set VisibleOnPageLoad Property of RadNotification to false and show RadNotification whenever you want as follows.
ASPX:
<telerik:RadNotificationID="RadNotification1"runat="server"VisibleOnPageLoad="false"Title="Sample Title"Text="Simple text content"ShowCloseButton="true">
</telerik:RadNotification>
C#:
RadNotification1.Show();
Hope this helps.
Thanks,
Princy.
0
Accepted
Marin Bratanov
Telerik team
answered on 30 Oct 2012, 09:06 AM
Hello Danny,
I have just answered your support ticket on the matter and for your convenience and for others that may have a similiar question I am pasting my reply here:
The RadNotification control supports two main ways of getting updated content - a client callback and a webservice. Client callbacks are lighter than postbacks because they do not go through the rendering stages of the page, yet they will still hit the page load event. Webservices, on the other hand, are not related to a given page and thus they will not affect it. You can see this in the following demos:
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.