如何使用两个自动完成的文本框并列

问题描述:

如何使用两个自动完成的文本框并排显示
第一次填充值时,然后根据第一个文本框的值出现另一个文本框值.

how to use two auto complete textbox parrallel
when first fill the value then come another textbox value according the value of first textbox

创建文本框更改事件


受保护的void textbox1_TextChanged(对象发送者,EventArgs e)
{
textbox2.Text = Textbox1.Text;
}
create textbox changed event


protected void textbox1_TextChanged(object sender, EventArgs e)
{
textbox2.Text=Textbox1.Text;
}