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
<
asp:CheckBox
ID
=
"TimerCheckBox"
runat
"server"
AutoPostBack
"true"
OnCheckedChanged
"TimerCheckBox_CheckedChanged"
/>
asp:Timer
"Timer1"
Enabled
"false"
Interval
"3000"
asp:UpdatePanel
"UpdatePanel1"
>
ContentTemplate
telerik:RadGrid
"RadGrid1"
... />
</
protected
void
TimerCheckBox_CheckedChanged(
object
sender, EventArgs e)
{
Timer1.Enabled = (sender
as
CheckBox).Checked;
}