如何根据下拉选择填充文本框
我有一张桌子:
empid empshortname empname empdesignation
当我从下拉列表中选择empshortname时,应该在一个文本框中填写empname,在另一个文本框中进行empdesignation,我希望根据单个选择填写许多文本框
谢谢和问候 sreedhar
答案 0 :(得分:0)
这应该让你去:) http://api.jquery.com/change/
答案 1 :(得分:0)
我知道你想从下拉列表中获取值empshortName,并根据它从DB或某处选择其他属性。 所以,要获取所选empshortName的值,请写一个事件函数:SelectedIndexChanged并写入:
string empName=dropdown.Items[dropdown.selectedIndex].value;//to get the key value
or:
string empName=dropdown.Items[dropdown.selectedIndex].Text; //to get the display text