Hi, I'm trying to fire the Notification on button click. The Notification is displaying but the title and content are empty, any ideas why?
<telerik:RadNotification ID="Notification" runat="server" Position="Center" AutoCloseDelay="10000" Width="350" EnableRoundedCorners="true" ContentIcon="none" KeepOnMouseOver="true" ShowCloseButton="false"> <ContentTemplate> <asp:Literal ID="NotificationText" runat="server" /> </ContentTemplate></telerik:RadNotification>protected void SaveQuoteButton_Click(object sender, EventArgs e){ Notification.Title = "Save Title"; NotificationText.Text = "Save Text"; Notification.Show();}