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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
head
runat
"server"
title
></
script
type
"text/javascript"
function ShowAlert()
{
//show alert
var oWnd = radalert('CustomText', 330, 100, 'RadAlert custom title');
//Attach RadAlertClosed event handler to the close event
oWnd.add_close(RadAlertClosed);
return false;
}
function RadAlertClosed(obj, args)
// get the RadWindow with clientID RadWindow1
var window1 = $find("RadWindow1");
//close RadWindow1
window1.close();
</
body
form
id
"form1"
asp:ScriptManager
ID
"ScriptManager1"
/>
div
telerik:RadWindowManager
"RadWindowManager1"
Windows
telerik:RadWindow
"RadWindow1"
NavigateUrl
"http://www.google.com"
VisibleOnPageLoad
"true"
input
"button"
value
"showAlert"
onclick
"ShowAlert()"