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#做

万分感谢赐教
展开
 我来答
放开那头母狼
2008-05-07 · 超过49用户采纳过TA的回答
知道答主
回答量:357
采纳率:0%
帮助的人:0
展开全部
<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;
}
}
yizusong
2008-05-07 · TA获得超过3045个赞
知道大有可为答主
回答量:4516
采纳率:0%
帮助的人:4495万
展开全部
so easy
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式