一、数据表CAT结构:
DropDownList无刷新二级联动CREATE TABLE [dbo].[CAT] (
DropDownList无刷新二级联动    
[CAT_ID] [int] IDENTITY (11NOT NULL ,
DropDownList无刷新二级联动    
[CAT_NAME] [nvarchar] (20) COLLATE Chinese_Taiwan_Stroke_CI_AS NULL ,
DropDownList无刷新二级联动    
[PARENT_ID] [int] NULL 
DropDownList无刷新二级联动
ON [PRIMARY]
DropDownList无刷新二级联动
GO
DropDownList无刷新二级联动
DropDownList无刷新二级联动
ALTER TABLE [dbo].[CAT] ADD 
DropDownList无刷新二级联动    
CONSTRAINT [DF_CAT_PARENT_ID] DEFAULT (0FOR [PARENT_ID],
DropDownList无刷新二级联动    
CONSTRAINT [PK_CAT] PRIMARY KEY  CLUSTERED 
DropDownList无刷新二级联动    (
DropDownList无刷新二级联动        
[CAT_ID]
DropDownList无刷新二级联动    )  
ON [PRIMARY] 
DropDownList无刷新二级联动
GO
DropDownList无刷新二级联动

二、配置web.config:
<system.web>部分加入:
DropDownList无刷新二级联动<httpHandlers>
DropDownList无刷新二级联动      
<add verb="POST,GET" path="ajax/*.ashx" type="Ajax.PageHandlerFactory, Ajax" />
DropDownList无刷新二级联动
</httpHandlers>
三、添加AjaxMethod.cs:
DropDownList无刷新二级联动using System;
DropDownList无刷新二级联动
using System.Data;
DropDownList无刷新二级联动
using System.Data.SqlClient;
DropDownList无刷新二级联动
using System.Configuration;
DropDownList无刷新二级联动
using System.Collections;
DropDownList无刷新二级联动
using System.Web;
DropDownList无刷新二级联动
using System.Web.Security;
DropDownList无刷新二级联动
using System.Web.UI;
DropDownList无刷新二级联动
using System.Web.UI.WebControls;
DropDownList无刷新二级联动
using System.Web.UI.WebControls.WebParts;
DropDownList无刷新二级联动
using System.Web.UI.HtmlControls;
DropDownList无刷新二级联动
DropDownList无刷新二级联动
}
四、Dropdownlist.aspx代码:
>
五、Dropdownlist.aspx.cs代码:
DropDownList无刷新二级联动using System;
DropDownList无刷新二级联动
using System.Data;
DropDownList无刷新二级联动
using System.Configuration;
DropDownList无刷新二级联动
using System.Web;
DropDownList无刷新二级联动
using System.Web.Security;
DropDownList无刷新二级联动
using System.Web.UI;
DropDownList无刷新二级联动
using System.Web.UI.WebControls;
DropDownList无刷新二级联动
using System.Web.UI.WebControls.WebParts;
DropDownList无刷新二级联动
using System.Web.UI.HtmlControls;
DropDownList无刷新二级联动
using System.Data.SqlClient;
DropDownList无刷新二级联动
DropDownList无刷新二级联动
}
六、Ajax.dll文件.
Ajax.dll下载

相关文章: