Hi fren I wanna add the seperate text in data grid
my code goes flows..
string str= first.Text;
string[] arrstr; arrstr=str.Split(new char[]{'=',' '});
second.Text = String.Empty;
for(int i=0; i<arrstr.Length; i++)
second.Text += arrstr[i] + "\r\n";
now how can I add it tho the seperate dataGrid column ????