三级联动就是用三个下拉列表框DropDownList,每个里面添加相应的东西,在第一个列表框中选择一个值,第二三个列表框都会根据第一个选择进行相应的变化,在第二个列表框中选择一个值,第三个列表框也会根据第二个的选择进行变化,通常用于地区选择以及时间日期选择。

注:只有上一个列表框选择执行提交事件,才可以在提交事件中写执行方法,AutoPostBack - 自动提交事件,将DropDownList属性的AutoPostBack改为true

写一个简单的数据库,用三级联动将数据库里的信息查找相应显示

数据库:

写一个省,市,区县的表,市的Pcode为省的Acode,区县的Pcode为市的Acode

create database China
go
use China
go
create table Chinast
(
Acode nvarchar(20),
Aname nvarchar(20),
Pcode nvarchar(20)
) insert into Chinast values('','山东','')
insert into Chinast values('','济南','')
insert into Chinast values('','历下区','')
insert into Chinast values('','天桥区','')
insert into Chinast values('','槐荫区','')
insert into Chinast values('','淄博','')
insert into Chinast values('','张店区','')
insert into Chinast values('','周村区','')
insert into Chinast values('','淄川区','')
insert into Chinast values('','山西','')
insert into Chinast values('','太原','')
insert into Chinast values('','清徐','')
insert into Chinast values('','阳曲','')
insert into Chinast values('','古交','')
insert into Chinast values('','临汾','')
insert into Chinast values('','霍州','')
insert into Chinast values('','洪洞','')
insert into Chinast values('','襄汾','')

写一个Web窗体,里面放三个DropDownList,简单的调整一下

前台代码:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default1.aspx.cs" Inherits="Default1" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<style type="text/css">
.a {
position: relative;
top: 100px;
left: 30%;
height: 40px;
width: 100px;
font-family:微软雅黑;
font-size:25px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<asp:DropDownList ID="DropDownList1" runat="server" CssClass="a" AutoPostBack="True"></asp:DropDownList>&nbsp;&nbsp;
<asp:DropDownList ID="DropDownList2" runat="server" CssClass="a" AutoPostBack="True"></asp:DropDownList>&nbsp;&nbsp;
<asp:DropDownList ID="DropDownList3" runat="server" CssClass="a"></asp:DropDownList>
</form>
</body>
</html>

数据库实体类

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web; /// <summary>
/// Chinast 的摘要说明
/// </summary>
public class Chinast
{
public Chinast()
{
//
// TODO: 在此处添加构造函数逻辑
//
} public string Acode { get; set; }
public string Aname { get; set; }
public string Pcode { get; set; }
}

数据库操作类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.SqlClient; /// <summary>
/// ChinastData 的摘要说明
/// </summary>
public class ChinastData
{
SqlConnection conn = null;
SqlCommand cmd = null;
public ChinastData()
{
conn = new SqlConnection("server=.;database=China;user=sa;pwd=123;");
cmd = conn.CreateCommand();
} /// <summary>
/// 根据地区的Pcode查找和此Pcode相应的地区信息
/// </summary>
/// <param name="code"></param>
/// <returns></returns>
public List<Chinast> selectAll(string code)
{
List<Chinast> li = new List<Chinast>();
cmd.CommandText = "select * from Chinast where Pcode=@Pcode";
cmd.Parameters.Clear();
cmd.Parameters.Add("@Pcode", code);
conn.Open();
SqlDataReader dr = cmd.ExecuteReader();
if (dr.HasRows)
{
while (dr.Read())
{
Chinast st=new Chinast();
st.Acode=dr["Acode"].ToString();
st.Aname= dr["Aname"].ToString();
st.Pcode=dr["Pcode"].ToString();
li.Add(st);
}
}
conn.Close();
return li;
} }

后台代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls; public partial class Default1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
DropDownList1.SelectedIndexChanged += DropDownList1_SelectedIndexChanged;//省提交事件委托
DropDownList2.SelectedIndexChanged += DropDownList2_SelectedIndexChanged;//市提交事件委托
if (IsPostBack == false)//判断IsPostBack为false,将代码写在里面,页面只执行一次,防止每次操作进行页面刷新
{
//调用数据库方法,返回一个Chinast泛型集合,传参省的Pcode
List<Chinast> sheng = new ChinastData().selectAll("");
DropDownList1.DataSource = sheng;//绑定数据源
DropDownList1.DataTextField = "Aname";//下拉框里面显示的值,DataTextField为返回集合中的Aname,地名
DropDownList1.DataValueField = "Acode";//Value为他的Acode;
DropDownList1.DataBind(); //因为每个市的Pcode为省的Acode,Acode为省的Value值,则根据市的Pcode查数据时就是省的Value,DropDownList1.SelectedItem.Value
List<Chinast> shi = new ChinastData().selectAll(DropDownList1.SelectedItem.Value);
DropDownList2.DataSource = shi;
DropDownList2.DataTextField = "Aname";
DropDownList2.DataValueField = "Acode";
DropDownList2.DataBind(); //因为每个区县的Pcode为市的Acode,Acode为市的Value值,则根据区县的Pcode查数据时就是市的Value,DropDownList2.SelectedItem.Value
List<Chinast> qu = new ChinastData().selectAll(DropDownList2.SelectedItem.Value);
DropDownList3.DataSource = qu;
DropDownList3.DataTextField = "Aname";
DropDownList3.DataValueField = "Acode";
DropDownList3.DataBind(); } } void DropDownList2_SelectedIndexChanged(object sender, EventArgs e)//市提交事件
{
List<Chinast> qu = new ChinastData().selectAll(DropDownList2.SelectedItem.Value);//根据选择市的Value查找相应的区县
DropDownList3.DataSource = qu;
DropDownList3.DataTextField = "Aname";
DropDownList3.DataValueField = "Acode";
DropDownList3.DataBind();
} void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)//省提交事件,选择后执行提交,市及区县根据Value值执行相应的查找显示
{
List<Chinast> shi = new ChinastData().selectAll(DropDownList1.SelectedItem.Value);//根据选择省的Value查找相应的市
DropDownList2.DataSource = shi;
DropDownList2.DataTextField = "Aname";
DropDownList2.DataValueField = "Acode";
DropDownList2.DataBind(); List<Chinast> qu = new ChinastData().selectAll(DropDownList2.SelectedItem.Value);//根据选择市的Value查找相应的区县
DropDownList3.DataSource = qu;
DropDownList3.DataTextField = "Aname";
DropDownList3.DataValueField = "Acode";
DropDownList3.DataBind();
} }

 

ASP.NET 三级联动的更多相关文章

  1. 2014.12.06 ASP.NET 三级联动,添加员工,修改员工

    (一)三级联动 要实现的效果: 代码: MyDBDataContext context = new MyDBDataContext(); protected void Page_Load(object ...

  2. asp.net_MVC_jq三级联动

    数据库结构 建立三张表,Association,Team,Player 关系如下: 建立asp.net MVC 3项目,在HomeController.cs中利用Linq to SQL获取数据 首先实 ...

  3. ASP.NET实现省市区三级联动(局部刷新)

    跟前一篇ASP.NET实现年月日三级联动(局部刷新)一样,没什么技术含量,直接上代码 <asp:ScriptManager ID="ScriptManager1" runat ...

  4. 在ASP.NET MVC中实现一种不同于平常的三级联动、级联方式, 可用于城市、车型选择等多层级联场景

    三级或多级联动的场景经常会碰到,比如省.市.区,比如品牌.车系.车型,比如类别的多级联动......我们首先想到的是用三个select来展示,这是最通常的做法.但在另外一些场景中,比如确定搜索条件的时 ...

  5. webForm(三)——三级联动

    三级联动 首先附图一张,初步认识一下什么是三级联动:                           注:选第一个后面两个变,选第二个,最后一个改变. 其次,做三级联动需要注意的方面:①DropD ...

  6. 用DropDownList实现的省市级三级联动

    这是一个用DropDownList 实现的省市级三级联动,记录一下········ <asp:ScriptManager ID="ScriptManager1" runat= ...

  7. ajax验证表单元素规范正确与否 ajax展示加载数据库数据 ajax三级联动

    一.ajax验证表单元素规范正确与否 以用ajax来验证用户名是否被占用为例 1创建表单元素<input type="text" id="t"> 2 ...

  8. 20150303--从SQL中获取数据的三级联动

    省市地区的三级联动,每变更一次所选地都需要提交,但是又不需要把整个页面提交,所以我们需要使用控件:UdataPanel.工具--AJAX扩展 还有ScriptManager,并要将其放在页面的最顶端. ...

  9. Web 1三级联动 下拉框 2添加修改删除 弹框

    Web  三级联动 下拉框 using System; using System.Collections.Generic; using System.Linq; using System.Web; u ...

随机推荐

  1. vs2017配置文件目录

    C:\Users\Administrator\AppData\Local\Microsoft\VisualStudio\15.0_6d0a0a42

  2. Ubuntu下RabbitMQ安装

    由于RabbitMQ需要erlang语言的支持,在安装RabbitMQ之前需要安装erlang,执行命令: sudo apt-get install erlang-nox 安装RabbitMQ命令: ...

  3. Android忘记锁屏密码如何进入手机?

    Android忘记锁屏密码如何进入手机?     1.关闭手机 2.进入recovery模式(即恢复模式,记住不是挖煤模式.进入恢复模式不同手机有不同方法,三星的话安主页键,关机键和音量+(或-键), ...

  4. 安全测试6_Web安全工具第二节(代理抓包分析工具)

    上节课讲了浏览器及扩展,这节课继续来学习下抓包分析. 首先看下下图,了解下代理工具的原理:代理就相当于收费站一样,任何要通过的车辆必须经过它. 浏览器的代理我们可以通过设置进行手动设置代理,或者通过P ...

  5. (一)apache atlas源代码编译与打包

    特别注意: atlas已经提供了0.8版本可以安装了,只有在国外的服务器上安装编译才比较顺利,可以按照官方文档去安装. 国内很多网址有被墙的问题,目前还没有完全解决,可能安装不成功 安装文档地址:ht ...

  6. mysql 动态拼接表字段,值 mybatis 动态获取表字段

    -- 取表所有字段,自动用逗号分开 select GROUP_CONCAT(DISTINCT COLUMN_NAME) from information_schema.columns where ta ...

  7. 测试HANA的真实案例

    configure memory limit for DEV.QAS 目前总内存为1367.19GB, DEV和QAS为同一数据库 我们将设置DEV为600GB QAS也为600GB ======== ...

  8. Java执行js代码

    在做项目中有时候需要用到Java调用js文件执行相应的方法 在JDK1.6添加了新的ScriptEngine类,允许用户直接执行js代码. import org.junit.Test; import ...

  9. python中的update

    update()批量写入批量更新字典,举个例子: 1 a = { 2 "name":"dlrb", 3 "age":25, 4 " ...

  10. 8. Object转Map,Map转Object

    法一:使用reflect进行转换 public static Object mapToObject(Map<String, Object> map, Class<?> bean ...