Pages

Subscribe:

Ads 468x60px

Friday, March 2, 2012

how to concatenate two strings in asp.net using c#

if you want to concatenate two strings in asp.net using c#
copy and past the below code in your aspx.cs file.

    string name = TxtLname.Text.ToString() + " " + TxtFName.Text.ToString();

No comments:

Post a Comment