asp.NET中用DropDownList实现城市之间的联动
如何在asp.NET中用DropDownList实现城市之间的联动?江苏南京苏州扬州浙江杭州温州宁波回答出来再追加100分!...
如何在asp.NET中用DropDownList实现城市之间的联动?
江苏 南京 苏州 扬州
浙江 杭州 温州 宁波
回答出来再追加100分! 展开
江苏 南京 苏州 扬州
浙江 杭州 温州 宁波
回答出来再追加100分! 展开
2个回答
展开全部
在SQL中建立一个server表
city province
南京 江苏
苏州 江苏
扬州 江苏
杭州 浙江
温州 浙江
宁波 浙江
null null(留空)
然后在Visual Studio新建项目
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
请选择省份<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" DataSourceID="SqlDataSource1"
DataTextField="province" DataValueField="province">
</asp:DropDownList>
请选择城市<asp:DropDownList ID="DropDownList2" runat="server" AutoPostBack="True" DataSourceID="SqlDataSource2"
DataTextField="city" DataValueField="city">
</asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:master %>"
SelectCommand="SELECT DISTINCT province FROM province"></asp:SqlDataSource>
<asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:master %>"
SelectCommand="SELECT [city] FROM [province] WHERE ([province] = @province)">
<SelectParameters>
<asp:ControlParameter ControlID="DropDownList1" Name="province" PropertyName="SelectedValue"
Type="String" />
</SelectParameters>
</asp:SqlDataSource>
<br />
<asp:Button ID="Button1" runat="server" Text="提交" />
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="DropDownList1"
ErrorMessage="您没有选择省份!"></asp:RequiredFieldValidator>
<br />
欢迎来自<asp:Label ID="Label1" runat="server"></asp:Label>
<asp:Label ID="Label2" runat="server"></asp:Label>的朋友!</div>
</form>
</body>
</html>
city province
南京 江苏
苏州 江苏
扬州 江苏
杭州 浙江
温州 浙江
宁波 浙江
null null(留空)
然后在Visual Studio新建项目
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
请选择省份<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" DataSourceID="SqlDataSource1"
DataTextField="province" DataValueField="province">
</asp:DropDownList>
请选择城市<asp:DropDownList ID="DropDownList2" runat="server" AutoPostBack="True" DataSourceID="SqlDataSource2"
DataTextField="city" DataValueField="city">
</asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:master %>"
SelectCommand="SELECT DISTINCT province FROM province"></asp:SqlDataSource>
<asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:master %>"
SelectCommand="SELECT [city] FROM [province] WHERE ([province] = @province)">
<SelectParameters>
<asp:ControlParameter ControlID="DropDownList1" Name="province" PropertyName="SelectedValue"
Type="String" />
</SelectParameters>
</asp:SqlDataSource>
<br />
<asp:Button ID="Button1" runat="server" Text="提交" />
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="DropDownList1"
ErrorMessage="您没有选择省份!"></asp:RequiredFieldValidator>
<br />
欢迎来自<asp:Label ID="Label1" runat="server"></asp:Label>
<asp:Label ID="Label2" runat="server"></asp:Label>的朋友!</div>
</form>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询