if you want to concatenate two strings in asp.net using c#
copy and past the below code in your aspx.cs file.
copy and past the below code in your aspx.cs file.
string name = TxtLname.Text.ToString() + " " + TxtFName.Text.ToString();
Tags:
asp.net