yes , i got the problem u are facing , see this its working fine
string name = "amal,mandarapu";//assign this string to the value of textbox,and cehck if contains , that code u have already mentioned, and than split and add again
string[] data = name.Split(',');
string newname = data[0] + data[1];
it will work
Regards
D