Click here to Skip to main content
15,919,423 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to use two auto complete textbox parrallel
when first fill the value then come another textbox value according the value of first textbox
Posted

1 solution

create textbox changed event


protected void textbox1_TextChanged(object sender, EventArgs e)
{
textbox2.Text=Textbox1.Text;
}
 
Share this answer
 
Comments
ridoy 30-Aug-12 7:15am    
may be a good solution..+5 from me

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900