str = "abc,def,ghi,jklm,no,pq,rstuvw,xyz";string[] s = str.Split(',');for (int i =0; i<s.Length;i++){Response.Write(s[i] + "<br>");}