|
|
posted on April 05, 2011 14:16
string emailAddress = "email1@domain.com;address2@another.com;myaccount@somewhere.com";
string[] valuePair = emailAddress.Split(new char[] { ';' });
for (int i = 0; i <= valuePair.Length - 1; i++)
{
Response.Write(valuePair[i].ToString() + "<br>");
}
There are currently no comments, be the first to post one!