asp.net實現無重新整理DropDownList聯動控制項

來源:互聯網
上載者:User
ASP.NET給我們帶了了事件模型的編程機制,這使得我們將所有的任務都放在伺服器上執行哪怕是一個小小變動,其實這到不是什麼問題,可是有一點我們無法忍受,如果我們改變某一個輸入框中的內容頁面要重新整理,改變DropDownlist的選擇項需要更新另一個Dropdownlist需要重新整理,真是鬱悶。        下面我將描述一種原始的方法,之所以說它原是是因為這種方法在ASP.NET之前就已經有了,我想這兩者之間的關係我不必詳細描述,我們今天要說的是如何不重新整理頁面更新DropDownList,該方法旨在拋磚引玉,其實使用該方法可以實現許多不重新整理網頁就和後台互動的應用,好了廢話就不說了,看看我們的例子吧,首先我們需要一個放置兩個DropDownList的頁面,頁面的代碼如下:
<%@ Page language="c#" Codebehind="Example.aspx.cs" AutoEventWireup="false" Inherits="Webs.other.Example" %>
<HTML>
<HEAD>
<title>Example</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5";>
<script>
function load(state){
var drp2 = document.getElementById("DropDownList2");
for (i = drp2.length; i >= 0; i--){
drp2.options.remove(i);
}

var oHttpReq = new ActiveXObject("MSXML2.XMLHTTP");
var oDoc = new ActiveXObject("MSXML2.DOMDocument");

oHttpReq.open("POST", "getData.aspx?state="+state, false);
oHttpReq.send("");
result = oHttpReq.responseText;
oDoc.loadXML(result);
items1 = oDoc.selectNodes("//CITY/Table/Id");
items2 = oDoc.selectNodes("//CITY/Table/shiname");

var itemsLength=items1.length;
  for(i=0;i<itemsLength;i++)

//將小類的類名和編號賦予DropDownList2
  {
  var newOption = document.createElement("OPTION");
  newOption.text=items2[i].text;
  newOption.value=items1[i].text;
  drp2.options.add(newOption);
  }
}
window.onload = function(){load('1');}

</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>
<asp:TextBox id="TH" runat="server"></asp:TextBox>
<asp:Button id="Button1" runat="server" Text="Button"></asp:Button>
</form>
</body>
</HTML>

上面的頁面中有兩個DropDownList和一段js指令碼,該指令碼可以直接寫在頁面也可以寫在後台在Regeist到頁面上(後者更靈活一些)該頁的後台代碼如下所示,
cs源檔案:

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;

namespace Webs.other
{
/// <summary>
/// Example 的摘要說明。
/// </summary>
public class Example : System.Web.UI.Page
{
 protected System.Web.UI.WebControls.DropDownList DropDownList1;
 protected System.Web.UI.WebControls.TextBox TH;
 protected System.Web.UI.WebControls.Button Button1;
 protected System.Web.UI.WebControls.DropDownList DropDownList2;

 private void Page_Load(object sender, System.EventArgs e)
 {
  // 在此處放置使用者代碼以初始化頁面
  if(!this.IsPostBack)
  {
   // 建立資料來源載入第一個DropDownList,也可以預設載入第二個
   SqlConnection con = new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings.Get("connStr1"));
   SqlDataAdapter da = new SqlDataAdapter("select Id,shengname from Province",con);
   DataSet ds = new DataSet();
   da.Fill(ds);
   this.DropDownList1.DataSource = ds;
   this.DropDownList1.DataTextField = "shengname";
   this.DropDownList1.DataValueField = "Id";
   this.DropDownList1.DataBind();
   // 這裡是綁定用戶端事件,當第一個DropDownList的選項改變時激發下面的事件onchange,這個事件將調用一個用戶端方法load()
   this.DropDownList1.Attributes.Add("onchange","load(this.options[this.selectedIndex].value)");
  }
 }

 #region Web Form Designer generated code
 override protected void OnInit(EventArgs e)
 {
  //
  // CODEGEN:該調用是 ASP.NET Web Form設計器所必需的。
  //
  InitializeComponent();
  base.OnInit(e);
 }
 
 /// <summary>
 /// 設計器支援所需的方法 - 不要使用代碼編輯器修改
 /// 此方法的內容。
 /// </summary>
 private void InitializeComponent()
 {    
  this.Button1.Click += new System.EventHandler(this.Button1_Click);
  this.Load += new System.EventHandler(this.Page_Load);

 }
 #endregion

 private void Button1_Click(object sender, System.EventArgs e)
 {
  TH.Text=this.Request.Form["DropDownList2"].ToString();
 }
}
} 在上面的代碼中我們做了兩件事情:1、幫定其中一個DropDownList(你也可以同時綁定兩個)。2、指定該控制項的用戶端指令碼。下面我們詳細介紹一下上面的js代碼,首先得到頁面上要聯動的DorpDownList對象,將他的Options清空,再建立兩個用戶端對象oHttpReq和oDoc對象,其中一個負責發送請求另一個負責得到響應結果,我們將使用者選擇的State發送到名為WebForm6.aspx的頁面,該頁面將處理這個請求並返回一個響應,該響應的結果是一個XML檔案,稍候介紹WebForm6.aspx裡面的代碼。我們將返回的結果使用loadXML方法Load到oDoc對象裡面,然後就可以使用selectNodes方法得到所有的city節點,接著迴圈這些節點在用戶端建立Option對象,最後將這些Option對象Add到DropDwonList2裡面去。   getdata源檔案

using System;
using System.Collections;
using System.ComponentModel;using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Xml;
using System.Configuration;
using System.Text;

namespace Webs.other
{
/// <summary>
/// GetData 的摘要說明。
/// </summary>
public class GetData : System.Web.UI.Page
{
 private void Page_Load(object sender, System.EventArgs e)
 {
  // 在此處放置使用者代碼以初始化頁面
  //Response.Write(Request["state"]);
  int shengNo=int.Parse(Request["state"].ToString());  
  SqlConnection con = new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings.Get("connStr1"));
  SqlDataAdapter da = new SqlDataAdapter("select Id,shiname from City where Shengid='"+shengNo+"'",con);
  DataSet ds = new DataSet("CITY");
  da.Fill(ds);

  XmlTextWriter writer = new XmlTextWriter(Response.OutputStream,Encoding.UTF8);
  writer.Formatting = Formatting.Indented;
  writer.Indentation = 4;
  writer.IndentChar = ' ';
  writer.WriteStartDocument();
  ds.WriteXml(writer);
  writer.Flush();
  Response.End();
  writer.Close();  
 }

 #region Web Form Designer generated code
 override protected void OnInit(EventArgs e)
 {
  //
  // CODEGEN:該調用是 ASP.NET Web Form設計器所必需的。
  //
  InitializeComponent();
  base.OnInit(e);
 }
 
 /// <summary>
 /// 設計器支援所需的方法 - 不要使用代碼編輯器修改
 /// 此方法的內容。
 /// </summary>
 private void InitializeComponent()
 {    
  this.Load += new System.EventHandler(this.Page_Load);
 }
 #endregion
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.