string teststr="aa;bb;vv;dd";
   string[] teststr2=teststr.Split(';');
   for (int i = 0; i < teststr2.Length; i++)
   {

    Response.Write(teststr2[i]+"<br>");
   }

相关文章: