Click here to Skip to main content
16,018,818 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have two numeric text box in which for first text box number is populated from a table 'X' and is non editable. Second text box is editable and I can enter numeric values. When I enter value in second text box and save it, I need to combine values in first and second text box separated by ".". How can I solve this. Please help me to solve this.
Posted

1 solution

C# to concate text use + operator
C#
string CombinedValue = Textbox1.Text + "." + Textbox2.Text;

Happy Coding!
:)
 
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