Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
New to Telerik UI for ASP.NET AJAX? Download free 30-day trial
<%@ Page Language="vb" AutoEventWireup="true" Inherits="Telerik.Web.Examples.Window.Accessibility.DefaultVB"CodeFile="DefaultVB.aspx.vb" %> <!DOCTYPE html> <html xmlns='http://www.w3.org/1999/xhtml'> <head runat="server"> <title>Telerik ASP.NET Example</title> <link href="styles.css" rel="stylesheet" /> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1" /> <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" /> <div id="offsetElement" class="demo-container size-wide"></div> <asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click">Validate with WAVE</asp:LinkButton> <telerik:RadWindowManager RenderMode="Lightweight" EnableAriaSupport="true" OffsetElementID="offsetElement" ID="RadWindowManager1" runat="server" EnableShadow="true"> <Shortcuts> <telerik:WindowShortcut CommandName="RestoreAll" Shortcut="Alt+F3"></telerik:WindowShortcut> <telerik:WindowShortcut CommandName="Tile" Shortcut="Alt+F6"></telerik:WindowShortcut> <telerik:WindowShortcut CommandName="CloseAll" Shortcut="Esc"></telerik:WindowShortcut> </Shortcuts> <Windows> <telerik:RadWindow RenderMode="Lightweight" ID="RadWindow2" runat="server" Width="320" VisibleOnPageLoad="true" Left="400" Top="30" Title="ContentTemplate"> <ContentTemplate> <h2>RadWindow with ContentTemplate set!</h2> <asp:Image ID="img" runat="server" CssClass="content-image" ImageUrl="~/Window/TestPage/TestPageResources/RadWindow.gif" alt="" /> </ContentTemplate> <Shortcuts> <telerik:WindowShortcut CommandName="Maximize" Shortcut="Ctrl+F6"></telerik:WindowShortcut> <telerik:WindowShortcut CommandName="Minimize" Shortcut="Ctrl+F7"></telerik:WindowShortcut> </Shortcuts> </telerik:RadWindow> <telerik:RadWindow RenderMode="Lightweight" ID="RadWindow1" runat="server" VisibleOnPageLoad="true" Width="320" Top="30" Left="40" NavigateUrl="https://docs.telerik.com/devtools/aspnet-ajax/introduction" Title="NavigateUrl"> <Shortcuts> <telerik:WindowShortcut CommandName="Maximize" Shortcut="Ctrl+F2"></telerik:WindowShortcut> <telerik:WindowShortcut CommandName="Restore" Shortcut="Ctrl+F3"></telerik:WindowShortcut> </Shortcuts> </telerik:RadWindow> </Windows> </telerik:RadWindowManager> </form> </body> </html>