ajax实现无刷新两级联动DropDownList

本文来自小山blog:
http://singlepine.cnblogs.com/articles/257954.html
里面是三级联动,有数据库文件可下栽.
我只是将三级更改为两级,使用SQL SERVER数据库而已.

我的截图如下:
o_Ajax两级DropDownList联动.JPG
1.首先要在项目中增加对ajax.dll 的引用.

2.AjaxMethod.cs
ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownListusing System;
ajax实现无刷新两级联动DropDownList
using System.Data;
ajax实现无刷新两级联动DropDownList
using System.Data.SqlClient;
ajax实现无刷新两级联动DropDownList
namespace MyAjaxSample
ajax实现无刷新两级联动DropDownList
{
ajax实现无刷新两级联动DropDownList    
/// <summary>
ajax实现无刷新两级联动DropDownList    
/// AjaxMethod 的摘要说明。
ajax实现无刷新两级联动DropDownList    
/// </summary>

ajax实现无刷新两级联动DropDownList    public class AjaxMethod
ajax实现无刷新两级联动DropDownList    
{
ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownList        
#region GetPovinceList
ajax实现无刷新两级联动DropDownList        
public static DataSet GetPovinceList()
ajax实现无刷新两级联动DropDownList        
{
ajax实现无刷新两级联动DropDownList            
string sql="select * from povince";
ajax实现无刷新两级联动DropDownList            
return GetDataSet(sql);
ajax实现无刷新两级联动DropDownList        }

ajax实现无刷新两级联动DropDownList        
#endregion

ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownList        
#region GetCityList
ajax实现无刷新两级联动DropDownList        [Ajax.AjaxMethod]
ajax实现无刷新两级联动DropDownList        
public  DataSet GetCityList(int povinceid)
ajax实现无刷新两级联动DropDownList        
{
ajax实现无刷新两级联动DropDownList            
string sql="select * from city where father='"+povinceid+"'";
ajax实现无刷新两级联动DropDownList            
return GetDataSet(sql);            
ajax实现无刷新两级联动DropDownList        }

ajax实现无刷新两级联动DropDownList        
#endregion

ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownList        
#region GetAreaList
ajax实现无刷新两级联动DropDownList        [Ajax.AjaxMethod]
ajax实现无刷新两级联动DropDownList        
public  DataSet GetAreaList(int cityid)
ajax实现无刷新两级联动DropDownList        
{
ajax实现无刷新两级联动DropDownList            
string sql="select * from area where father='"+cityid+"'";
ajax实现无刷新两级联动DropDownList            
return GetDataSet(sql);            
ajax实现无刷新两级联动DropDownList        }

ajax实现无刷新两级联动DropDownList        
#endregion

ajax实现无刷新两级联动DropDownList    
ajax实现无刷新两级联动DropDownList        
#region GetDataSet
ajax实现无刷新两级联动DropDownList        
public static DataSet GetDataSet(string sql)
ajax实现无刷新两级联动DropDownList        
{
ajax实现无刷新两级联动DropDownList            
string ConnectionString=System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"];
ajax实现无刷新两级联动DropDownList            SqlDataAdapter    sda 
=new SqlDataAdapter(sql,ConnectionString);
ajax实现无刷新两级联动DropDownList            DataSet ds
=new DataSet();
ajax实现无刷新两级联动DropDownList            sda.Fill(ds);
ajax实现无刷新两级联动DropDownList            
return ds;
ajax实现无刷新两级联动DropDownList        }

ajax实现无刷新两级联动DropDownList        
#endregion

ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownList        
ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownList    }

ajax实现无刷新两级联动DropDownList}

ajax实现无刷新两级联动DropDownList

3.HTML代码:
ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownList<%@ Page language="c#" Codebehind="FourAjaxSample.aspx.cs" AutoEventWireup="false" Inherits="MyAjaxSample.FourAjaxSample" %>
ajax实现无刷新两级联动DropDownList
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
ajax实现无刷新两级联动DropDownList
<HTML>
ajax实现无刷新两级联动DropDownList    
<HEAD>
ajax实现无刷新两级联动DropDownList        
<title>FourAjaxSample</title>
ajax实现无刷新两级联动DropDownList        
<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
ajax实现无刷新两级联动DropDownList        
<meta content="C#" name="CODE_LANGUAGE">
ajax实现无刷新两级联动DropDownList        
<meta content="JavaScript" name="vs_defaultClientScript">
ajax实现无刷新两级联动DropDownList        
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
ajax实现无刷新两级联动DropDownList        
<script language="javascript">
ajax实现无刷新两级联动DropDownList        
function cityResult() 
ajax实现无刷新两级联动DropDownList        

ajax实现无刷新两级联动DropDownList            
var city=document.getElementById("DropDownList1");
ajax实现无刷新两级联动DropDownList            AjaxMethod.GetCityList(city.value,get_city_Result_CallBack);
ajax实现无刷新两级联动DropDownList        }

ajax实现无刷新两级联动DropDownList        
ajax实现无刷新两级联动DropDownList        
function get_city_Result_CallBack(response)
ajax实现无刷新两级联动DropDownList         
{
ajax实现无刷新两级联动DropDownList          
if (response.value != null)
ajax实现无刷新两级联动DropDownList             
{                    
ajax实现无刷新两级联动DropDownList              document.all(
"DropDownList2").length=0;                
ajax实现无刷新两级联动DropDownList          
var ds = response.value;
ajax实现无刷新两级联动DropDownList              
if(ds != null && typeof(ds) == "object" && ds.Tables != null)
ajax实现无刷新两级联动DropDownList              
{                    
ajax实现无刷新两级联动DropDownList                
for(var i=0; i<ds.Tables[0].Rows.length; i++)
ajax实现无刷新两级联动DropDownList            
{
ajax实现无刷新两级联动DropDownList                
var name=ds.Tables[0].Rows[i].city;
ajax实现无刷新两级联动DropDownList              
var id=ds.Tables[0].Rows[i].cityID;
ajax实现无刷新两级联动DropDownList              document.all(
"DropDownList2").options.add(new Option(name,id));
ajax实现无刷新两级联动DropDownList            }

ajax实现无刷新两级联动DropDownList               document.all(
"TextBox1").value="";  
ajax实现无刷新两级联动DropDownList              }

ajax实现无刷新两级联动DropDownList             }
               
ajax实现无刷新两级联动DropDownList         
return
ajax实现无刷新两级联动DropDownList       }

ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownList    
function areaResult() 
ajax实现无刷新两级联动DropDownList    

ajax实现无刷新两级联动DropDownList        
var area=document.getElementById("DropDownList2");
ajax实现无刷新两级联动DropDownList        AjaxMethod.GetAreaList(area.value,get_area_Result_CallBack);
ajax实现无刷新两级联动DropDownList    }

ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownList    
function get_area_Result_CallBack()
ajax实现无刷新两级联动DropDownList    
{
ajax实现无刷新两级联动DropDownList    
var province=document.getElementById("DropDownList1");
ajax实现无刷新两级联动DropDownList        
var pindex = province.selectedIndex;
ajax实现无刷新两级联动DropDownList        
var pValue = province.options[pindex].value;
ajax实现无刷新两级联动DropDownList        
var pText  = province.options[pindex].text;
ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownList        
var city=document.getElementById("DropDownList2");
ajax实现无刷新两级联动DropDownList        
var cindex = city.selectedIndex;
ajax实现无刷新两级联动DropDownList        
var cValue = city.options[cindex].value;
ajax实现无刷新两级联动DropDownList        
var cText  = city.options[cindex].text;
ajax实现无刷新两级联动DropDownList    document.all(
"TextBox1").value=pText+cText;                        
ajax实现无刷新两级联动DropDownList 
ajax实现无刷新两级联动DropDownList    }

ajax实现无刷新两级联动DropDownList        
</script>
ajax实现无刷新两级联动DropDownList    
</HEAD>
ajax实现无刷新两级联动DropDownList    
<body MS_POSITIONING="GridLayout">
ajax实现无刷新两级联动DropDownList        
<form id="Form1" method="post" runat="server">
ajax实现无刷新两级联动DropDownList            
<h3>Ajax实现两级联动</h3>
ajax实现无刷新两级联动DropDownList            
<TABLE class="border" id="border" style="Z-INDEX: 101; LEFT: 16px; WIDTH: 289px; POSITION: absolute; TOP: 48px; HEIGHT: 79px"
ajax实现无刷新两级联动DropDownList                borderColor
="#95b0d9" cellSpacing="0" cellPadding="0" width="289" align="center" bgColor="#ffffff"
ajax实现无刷新两级联动DropDownList                border
="1">
ajax实现无刷新两级联动DropDownList                
<TR>
ajax实现无刷新两级联动DropDownList                    
<TD style="WIDTH: 130px; HEIGHT: 27px" bgColor="#d8e7f6">
ajax实现无刷新两级联动DropDownList                        
<asp:label id="Lab_province" runat="server">省(直辖市)</asp:label></TD>
ajax实现无刷新两级联动DropDownList                    
<TD style="HEIGHT: 27px">
ajax实现无刷新两级联动DropDownList                        
<asp:dropdownlist id="DropDownList1" runat="server" onchange="cityResult();"></asp:dropdownlist></TD>
ajax实现无刷新两级联动DropDownList                
</TR>
ajax实现无刷新两级联动DropDownList                
<TR>
ajax实现无刷新两级联动DropDownList                    
<TD style="WIDTH: 130px; HEIGHT: 24px" bgColor="#d8e7f6">
ajax实现无刷新两级联动DropDownList                        
<asp:Label id="Lab_City" runat="server">城市</asp:Label></TD>
ajax实现无刷新两级联动DropDownList                    
<TD style="HEIGHT: 24px">
ajax实现无刷新两级联动DropDownList                        
<asp:DropDownList id="DropDownList2" runat="server" onchange="areaResult();"></asp:DropDownList></TD>
ajax实现无刷新两级联动DropDownList                
</TR>
ajax实现无刷新两级联动DropDownList                
<TR>
ajax实现无刷新两级联动DropDownList                    
<TD style="WIDTH: 130px" bgColor="#d8e7f6">你的最后选择是:
ajax实现无刷新两级联动DropDownList                    
</TD>
ajax实现无刷新两级联动DropDownList                    
<TD>
ajax实现无刷新两级联动DropDownList                        
<asp:TextBox id="TextBox1" runat="server"></asp:TextBox></TD>
ajax实现无刷新两级联动DropDownList                
</TR>
ajax实现无刷新两级联动DropDownList            
</TABLE>
ajax实现无刷新两级联动DropDownList        
</form>
ajax实现无刷新两级联动DropDownList    
</body>
ajax实现无刷新两级联动DropDownList
</HTML>
ajax实现无刷新两级联动DropDownList

4 .cs文件:
ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownListusing System;
ajax实现无刷新两级联动DropDownList
using System.Collections;
ajax实现无刷新两级联动DropDownList
using System.ComponentModel;
ajax实现无刷新两级联动DropDownList
using System.Data;
ajax实现无刷新两级联动DropDownList
using System.Drawing;
ajax实现无刷新两级联动DropDownList
using System.Web;
ajax实现无刷新两级联动DropDownList
using System.Web.SessionState;
ajax实现无刷新两级联动DropDownList
using System.Web.UI;
ajax实现无刷新两级联动DropDownList
using System.Web.UI.WebControls;
ajax实现无刷新两级联动DropDownList
using System.Web.UI.HtmlControls;
ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownList
namespace MyAjaxSample
ajax实现无刷新两级联动DropDownList
{
ajax实现无刷新两级联动DropDownList    
/// <summary>
ajax实现无刷新两级联动DropDownList    
/// FourAjaxSample 的摘要说明。
ajax实现无刷新两级联动DropDownList    
/// </summary>

ajax实现无刷新两级联动DropDownList    public class FourAjaxSample : System.Web.UI.Page
ajax实现无刷新两级联动DropDownList    
{
ajax实现无刷新两级联动DropDownList        
protected System.Web.UI.WebControls.DropDownList DropDownList1;
ajax实现无刷新两级联动DropDownList        
protected System.Web.UI.WebControls.Label Lab_province;
ajax实现无刷新两级联动DropDownList        
protected System.Web.UI.WebControls.Label Lab_City;
ajax实现无刷新两级联动DropDownList        
protected System.Web.UI.WebControls.TextBox TextBox1;
ajax实现无刷新两级联动DropDownList        
protected System.Web.UI.WebControls.DropDownList DropDownList2;
ajax实现无刷新两级联动DropDownList    
ajax实现无刷新两级联动DropDownList        
private void Page_Load(object sender, System.EventArgs e)
ajax实现无刷新两级联动DropDownList        
{
ajax实现无刷新两级联动DropDownList            Ajax.Utility.RegisterTypeForAjax(
typeof(MyAjaxSample.AjaxMethod));
ajax实现无刷新两级联动DropDownList            
if(!Page.IsPostBack)
ajax实现无刷新两级联动DropDownList            
{
ajax实现无刷新两级联动DropDownList                
this.DropDownList1.DataSource=AjaxMethod.GetPovinceList();
ajax实现无刷新两级联动DropDownList                
this.DropDownList1.DataTextField="province";
ajax实现无刷新两级联动DropDownList                
this.DropDownList1.DataValueField="provinceID";
ajax实现无刷新两级联动DropDownList                
this.DropDownList1.DataBind();
ajax实现无刷新两级联动DropDownList                
this.DropDownList1.Attributes.Add("onclick","cityResult();");
ajax实现无刷新两级联动DropDownList                
this.DropDownList2.Attributes.Add("onclick","areaResult();");
ajax实现无刷新两级联动DropDownList            }

ajax实现无刷新两级联动DropDownList        }

ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownList        
#region Web 窗体设计器生成的代码
ajax实现无刷新两级联动DropDownList        
override protected void OnInit(EventArgs e)
ajax实现无刷新两级联动DropDownList        
{
ajax实现无刷新两级联动DropDownList            
//
ajax实现无刷新两级联动DropDownList            
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
ajax实现无刷新两级联动DropDownList            
//
ajax实现无刷新两级联动DropDownList
            InitializeComponent();
ajax实现无刷新两级联动DropDownList            
base.OnInit(e);
ajax实现无刷新两级联动DropDownList        }

ajax实现无刷新两级联动DropDownList        
ajax实现无刷新两级联动DropDownList        
/// <summary>
ajax实现无刷新两级联动DropDownList        
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
ajax实现无刷新两级联动DropDownList        
/// 此方法的内容。
ajax实现无刷新两级联动DropDownList        
/// </summary>

ajax实现无刷新两级联动DropDownList        private void InitializeComponent()
ajax实现无刷新两级联动DropDownList        
{    
ajax实现无刷新两级联动DropDownList            
this.Load += new System.EventHandler(this.Page_Load);
ajax实现无刷新两级联动DropDownList
ajax实现无刷新两级联动DropDownList        }

ajax实现无刷新两级联动DropDownList        
#endregion

ajax实现无刷新两级联动DropDownList    }

ajax实现无刷新两级联动DropDownList}

ajax实现无刷新两级联动DropDownList

5.web.config
ajax实现无刷新两级联动DropDownList web.config设置数据库连接串

你可能感兴趣的:(Ajax)