asp.net 下拉框 DropDownlist编程问题
有数据表testID姓名年龄籍贯1QQQ222上海2WWW22北京3EEE11浙江aspx页面上控件一个DropDownlist;二个TextBox问题:想将表test的...
有 数据表test
ID 姓名 年龄 籍贯
1 QQQ 222 上海
2 WWW 22 北京
3 EEE 11 浙江
aspx页面上 控件 一个 DropDownlist;二个 TextBox
问题:
想将表test 的“姓名”列 绑定到DropDownlist 当选定DropDownlist的值时, 对应的“年龄”,“籍贯”值返回到 二个 TextBox。
请问 这个怎么做好? 请用C#做
万分感谢赐教 展开
ID 姓名 年龄 籍贯
1 QQQ 222 上海
2 WWW 22 北京
3 EEE 11 浙江
aspx页面上 控件 一个 DropDownlist;二个 TextBox
问题:
想将表test 的“姓名”列 绑定到DropDownlist 当选定DropDownlist的值时, 对应的“年龄”,“籍贯”值返回到 二个 TextBox。
请问 这个怎么做好? 请用C#做
万分感谢赐教 展开
展开全部
<body>
<form id="form1" runat="server">
<div>
<asp:DropDownList ID="DropDownList1" runat="server"
AutoPostBack="true" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
</asp:DropDownList>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></div>
</form>
</body>
===============
public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
this.DropDownList1.DataSource = //从数据库区的dataSet
this.DropDownList1.DataTextField = "姓名";
this.DropDownList1.DataValueField = "籍贯";
this.DropDownList1.DataBind();
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
string str = this.DropDownList1.SelectedValue;
if(str == null || str.Length==0)
{
str = this.DropDownList1.Items[0].Value;
}
this.TextBox1.Text = str;
}
}
<form id="form1" runat="server">
<div>
<asp:DropDownList ID="DropDownList1" runat="server"
AutoPostBack="true" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
</asp:DropDownList>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></div>
</form>
</body>
===============
public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
this.DropDownList1.DataSource = //从数据库区的dataSet
this.DropDownList1.DataTextField = "姓名";
this.DropDownList1.DataValueField = "籍贯";
this.DropDownList1.DataBind();
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
string str = this.DropDownList1.SelectedValue;
if(str == null || str.Length==0)
{
str = this.DropDownList1.Items[0].Value;
}
this.TextBox1.Text = str;
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询