Click here to Skip to main content
15,895,142 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
in my application i have 3 textboxes and if i write some in first 2 textboxes it will display the result in 3 textbox can any one help me how to write code or give the some idea....
thanx in advance
Posted
Comments
vaibhav mahajan 24-Jan-13 4:03am    
what does u actually want?
string concatenation or what?

1 solution

C#
textbox3.Text = textbox1.Text + textbox2.Text;
 
Share this answer
 

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