Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
New to Telerik UI for ASP.NET AJAX? Download free 30-day trial
RadNotification is compliant with Section 508 and Level AA of the WCAG 2.0 Guidelines. Run WAVE, the automated web accessibility evaluation tool, to check the accessibility level of the control yourself.
<%@ Page Language="vb" %> <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> <!DOCTYPE html> <html xmlns='http://www.w3.org/1999/xhtml'> <head runat="server"> <title>Telerik ASP.NET Example</title> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1" /> <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" /> <telerik:RadNotification RenderMode="Lightweight" Skin="Simple" runat="server" ID="RadNotification1" EnableRoundedCorners="true" EnableShadow="true" VisibleOnPageLoad="true" Position="Center" AutoCloseDelay="0" Title="Notification title" Width="400" Height="150" Text="RadNotification is compliant with Section 508 and Level AA of the WCAG 2.0 Guidelines."> </telerik:RadNotification> <asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click" Text="Validate with WAVE"> </asp:LinkButton> <script runat="server"> Protected Sub LinkButton1_Click(sender As Object, e As EventArgs) Response.Redirect("http://wave.webaim.org/report?url=" + Page.Request.Url.AbsoluteUri) End Sub </script> </form> </body> </html>