I\'m making a credit card processing form. The field in question is Name: (first and last).
What would some C# code look like that would take the text from a text bo
string[] names = txtName.Text.Split(' '); string fName = names[0]; string LName = names[1];