Cascading DropDown Tutorial
Cascading Drop Down Tutorial -------------------------------------------------------------------------------------------------------------------------- Database Script - /****** Object: Database [Cascading_ddl] Script Date: 11/4/2012 4:04:19 PM ******/ CREATE DATABASE [Cascading_ddl] GO USE [Cascading_ddl] GO CREATE TABLE [dbo].[Countries]( [CountryId] [int] NOT NULL, [CountryName] [varchar](100) NOT NULL, CONSTRAINT [PK_Countries] PRIMARY KEY CLUSTERED ( [CountryId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[States]( [StateId] [int] NOT NULL, [CountryId] [int] NOT NULL, [StateName] [varchar](100) NOT NULL, CONSTRAINT [PK_States] PRIMARY KEY CLUSTERED ( [StateId] ASC )WITH (PAD_INDEX = OF...