ASP.NET 三级联动
三级联动就是用三个下拉列表框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>
<asp:DropDownList ID="DropDownList2" runat="server" CssClass="a" AutoPostBack="True"></asp:DropDownList>
<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 三级联动的更多相关文章
- 2014.12.06 ASP.NET 三级联动,添加员工,修改员工
(一)三级联动 要实现的效果: 代码: MyDBDataContext context = new MyDBDataContext(); protected void Page_Load(object ...
- asp.net_MVC_jq三级联动
数据库结构 建立三张表,Association,Team,Player 关系如下: 建立asp.net MVC 3项目,在HomeController.cs中利用Linq to SQL获取数据 首先实 ...
- ASP.NET实现省市区三级联动(局部刷新)
跟前一篇ASP.NET实现年月日三级联动(局部刷新)一样,没什么技术含量,直接上代码 <asp:ScriptManager ID="ScriptManager1" runat ...
- 在ASP.NET MVC中实现一种不同于平常的三级联动、级联方式, 可用于城市、车型选择等多层级联场景
三级或多级联动的场景经常会碰到,比如省.市.区,比如品牌.车系.车型,比如类别的多级联动......我们首先想到的是用三个select来展示,这是最通常的做法.但在另外一些场景中,比如确定搜索条件的时 ...
- webForm(三)——三级联动
三级联动 首先附图一张,初步认识一下什么是三级联动: 注:选第一个后面两个变,选第二个,最后一个改变. 其次,做三级联动需要注意的方面:①DropD ...
- 用DropDownList实现的省市级三级联动
这是一个用DropDownList 实现的省市级三级联动,记录一下········ <asp:ScriptManager ID="ScriptManager1" runat= ...
- ajax验证表单元素规范正确与否 ajax展示加载数据库数据 ajax三级联动
一.ajax验证表单元素规范正确与否 以用ajax来验证用户名是否被占用为例 1创建表单元素<input type="text" id="t"> 2 ...
- 20150303--从SQL中获取数据的三级联动
省市地区的三级联动,每变更一次所选地都需要提交,但是又不需要把整个页面提交,所以我们需要使用控件:UdataPanel.工具--AJAX扩展 还有ScriptManager,并要将其放在页面的最顶端. ...
- Web 1三级联动 下拉框 2添加修改删除 弹框
Web 三级联动 下拉框 using System; using System.Collections.Generic; using System.Linq; using System.Web; u ...
随机推荐
- 分布式系统的Raft算法
好东西~~ 英文动画演示Raft 过去, Paxos一直是分布式协议的标准,但是Paxos难于理解,更难以实现,Google的分布式锁系统Chubby作为Paxos实现曾经遭遇到很多坑. 来自Stan ...
- RSA加密解密,String转PublicKey、PrivateKey;附Base64.JAR
网络请求的数据需要加密,服务器给的他们那一套在Android一直报错,自己写了一个: package com.cc.common.util; import javax.crypto.Cipher; i ...
- 百度翻译API(C#)
百度翻译开放平台:点击打开链接 1. 定义类用于保存解析json得到的结果 public class Translation { public string Src { get; set; } pub ...
- Ubuntu17.04下安装vmware虚拟机
linux常用虚拟机一般为KVM,Vmware或者VirtualBox(简称VBox). 下面给大家介绍以下如何在ubuntu17.04版本上安装vmware虚拟机至于虚拟机是用来干啥的,在这里我就不 ...
- Spring boot 下使用 Swagger
通过Swagger 可以更好的将后台的RESTfull API文档化,如下图所示: 1. Swagger 主要依赖以下两个jar包: <!-- https://mvnrepository.com ...
- javascript(面向对象,作用域,闭包,设计模式等)
javascript(面向对象,作用域,闭包,设计模式等) 1. 常用js类定义的方法有哪些? 参考答案:主要有构造函数原型和对象创建两种方法.原型法是通用老方法,对象创建是ES5推荐使用的方法.目前 ...
- 2013年第四届蓝桥杯JavaB组省赛试题解析
题目及解析如下: 题目大致介绍: 第一题到第四题是结果填空,方法不限只要得到最后结果就行 第五题和第六题是代码填空题,主要考察算法基本功和编程基本功 第七题到第十题是编程题,要求编程解决问题 第一题 ...
- ES6学习笔记<一> let const class extends super
学习参考地址1 学习参考地址2 ECMAScript 6(以下简称ES6)是JavaScript语言的下一代标准.因为当前版本的ES6是在2015年发布的,所以又称ECMAScript 2015:也 ...
- IntelliJ IDEA tomcat 热部署
1.点击idea中tomcat设置 2.点击Deployment查看Deploy at the server startup 中tomcat运行的包是 xxxx:war 还是其他,如果是xxx:war ...
- 《算法》第二章部分程序 part 5
▶ 书中第二章部分程序,加上自己补充的代码,包括利用优先队列进行多路归并和堆排序 ● 利用优先队列进行多路归并 package package01; import edu.princeton.cs.a ...