如何完成無(wú)刷新的DropdownList聯(lián)動(dòng)效果
發(fā)表時(shí)間:2024-05-29 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]ASP.NET給我們帶了了事件模型的編程機(jī)制,這使得我們將所有的任務(wù)都放在服務(wù)器上執(zhí)行哪怕是一個(gè)小小變動(dòng),其實(shí)這到不是什么問(wèn)題,可是有一點(diǎn)我們無(wú)法忍受,如果我們改變某一個(gè)輸入框中的內(nèi)容頁(yè)面要刷新,改變DropDownlist的選擇項(xiàng)需要更新另一個(gè)Dropdownlist需要刷新,真是郁悶。 ...
ASP.NET給我們帶了了事件模型的編程機(jī)制,這使得我們將所有的任務(wù)都放在服務(wù)器上執(zhí)行哪怕是一個(gè)小小變動(dòng),其實(shí)這到不是什么問(wèn)題,可是有一點(diǎn)我們無(wú)法忍受,如果我們改變某一個(gè)輸入框中的內(nèi)容頁(yè)面要刷新,改變DropDownlist的選擇項(xiàng)需要更新另一個(gè)Dropdownlist需要刷新,真是郁悶。
下面我將描述一種原始的方法,之所以說(shuō)它原是是因?yàn)檫@種方法在ASP.NET之前就已經(jīng)有了,我想這兩者之間的關(guān)系我不必詳細(xì)描述,我們今天要說(shuō)的是如何不刷新頁(yè)面更新DropDownList,該方法旨在拋磚引玉,其實(shí)使用該方法可以實(shí)現(xiàn)許多不刷新網(wǎng)頁(yè)就和后臺(tái)交互的應(yīng)用,好了廢話就不說(shuō)了,看看我們的例子吧,首先我們需要一個(gè)放置兩個(gè)DropDownList的頁(yè)面,假如它叫WebForm2.aspx,頁(yè)面的代碼如下:
<%@ Page language="c#" Codebehind="WebForm2.aspx.cs" AutoEventWireup="false" Inherits="WebApptest1.WebForm2" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>WebForm2</title>
<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
<meta content="C#" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
<script>
function load(state){
var drp2 = document.getElementById("DropDownList2");
for(var i = 0;i<=drp2.options.length -1;i++){
drp2.remove(i);
}
var oHttpReq = new ActiveXObject("MSXML2.XMLHTTP");
var oDoc = new ActiveXObject("MSXML2.DOMDocument");
oHttpReq.open("POST", "webform6.aspx?state="+state, false);
oHttpReq.send("");
result = oHttpReq.responseText;
oDoc.loadXML(result);
items = oDoc.selectNodes("http://CITY/Table");
for (var item = items.nextNode(); item; item = items.nextNode()){
var city = item.selectSingleNode("http://city").nodeTypedValue;
var newOption = document.createElement("OPTION");
newOption.text = city;
newOption.value = city;
drp2.options.add(newOption);
}
}
</script>
</HEAD>
<body MS_POSITIONING="flowLayout">
<form id="Form1" method="post" runat="server">
<asp:DropDownList id="DropDownList1" runat="server"></asp:DropDownList>
<asp:DropDownList id="DropDownList2" runat="server"></asp:DropDownList>
</form>
</body>
</HTML>
上面的頁(yè)面中有兩個(gè)DropDownList和一段js腳本,該腳本可以直接寫在頁(yè)面也可以寫在后臺(tái)在Regeist到頁(yè)面上(后者更靈活一些)該頁(yè)的后臺(tái)代碼如下所示,在Page_Load里面寫如下的代碼:
if(!this.IsPostBack){
SqlConnection con = new SqlConnection("server=localhost;database=pubs;uid=sa;pwd=sa;");
SqlDataAdapter da = new SqlDataAdapter("select state from authors group by state",con);
DataSet ds = new DataSet();
this.DropDownList1.DataTextField = "State";
this.DropDownList1.DataValueField = "State";
this.DropDownList1.DataBind();
this.DropDownList1.Attributes.Add("onchange","load(this.options[this.selectedIndex].innerText)");
}
在上面的代碼中我們做了兩件事情:1、幫定其中一個(gè)DropDownList(你也可以同時(shí)綁定兩個(gè))。2、指定該控件的客戶端腳本。下面我們?cè)敿?xì)介紹一下上面的js代碼,首先得到頁(yè)面上要聯(lián)動(dòng)的DorpDownList對(duì)象,將他的Options清空,再創(chuàng)建兩個(gè)客戶端對(duì)象oHttpReq和oDoc對(duì)象,其中一個(gè)負(fù)責(zé)發(fā)送請(qǐng)求另一個(gè)負(fù)責(zé)得到響應(yīng)結(jié)果,我們將用戶選擇的State發(fā)送到名為WebForm6.aspx的頁(yè)面,該頁(yè)面將處理這個(gè)請(qǐng)求并返回一個(gè)響應(yīng),該響應(yīng)的結(jié)果是一個(gè)XML文件,稍候介紹WebForm6.aspx里面的代碼。我們將返回的結(jié)果使用loadXML方法Load到oDoc對(duì)象里面,然后就可以使用selectNodes方法得到所有的city節(jié)點(diǎn),接著循環(huán)這些節(jié)點(diǎn)在客戶端創(chuàng)建Option對(duì)象,最后將這些Option對(duì)象Add到DropDwonList2里面去。
下面我們看看WebFowm6.aspx都做了些什么事情,該頁(yè)面的HTML頁(yè)面是一個(gè)除了包括<@Page>指令意外什么都沒(méi)有的頁(yè)面,后臺(tái)的Page_Load代碼如下:
private void Page_Load(object sender, System.EventArgs e){
// Put user code to initialize the page here
if(this.Request["state"]!=null){
string state = this.Request["state"].ToString();
SqlConnection con = new SqlConnection("server=localhost;database=pubs;uid=sa;pwd=sa;");
SqlDataAdapter da = new SqlDataAdapter("select city from authors where state = '"+state+"'",con);
DataSet ds = new DataSet("CITY");
da.Fill(ds);
XmlTextWriter writer = new XmlTextWriter(Response.OutputStream, Response.ContentEncoding);
writer.Formatting = Formatting.Indented;
writer.Indentation = 4;
writer.IndentChar = ' ';
ds.WriteXml(writer);
writer.Flush();
Response.End();
writer.Close();
}
該方法得到用戶選擇的state通過(guò)查詢以后得到一個(gè)DataSet對(duì)象,使用該對(duì)象的WriteXML方法直接將內(nèi)容寫到Response.OutputStream里面然后傳遞到客戶端,客戶端的load方法通過(guò)result =oHttpReq.responseText;句話得到一個(gè)XML字符串,最后解析此串。