Telerik RadList Box Checkbox Items check all or uncheck all

Aspx page: I bound the lstLocations dynamically. So it look like as below. <telerik:RadListBox ID=”lstLocations” runat=”server” CheckBoxes=”true” Width=”520px” Height=”130px”> </telerik:RadListBox> // Select All checkbox buttons <asp:CheckBox CssClass=”CBFull” ID=”chkSelectAll” runat=”server” Text=”Select All” onclick=”javascript:return ToggleAllLocations(this);” /> // Add below function in javascript function function ToggleAllLocations(checkBox) { //ctl00_ContentPlaceHolder1_RadDockLocFilter_C_lstLocations is a client id of radlistbox var listbox = $find(“ctl00_ContentPlaceHolder1_RadDockLocFilter_C_lstLocations”); …

How to schedule and automate backups of SQL Server databases in SQL Server Express

Create store procedure. // Copyright © Microsoft Corporation. All Rights Reserved. // This code released under the terms of the // Microsoft Public License (MS-PL, http://opensource.org/licenses/ms-pl.html.) USE [master] GO /****** Object: StoredProcedure [dbo].[sp_BackupDatabases] ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO — ============================================= — Author: Microsoft — Create date: 2010-02-06 — Description: Backup Databases …