Hi i have just registered to the email webservice.
What i am trying to do is to every email in my db if he is a valid one.
the problem is that each email check takes about 5-20 seconds which is very slow for me sinse i have 9000 users to check.
Is there any solution to speed-up the proccess?
heres the code i am using:
for
{
xwevTest.AuthHeaderValue = auTest;
{
spUserID.Value = (
iBadCounter++;
}
}
(int i = 0; i < dsUsers.Tables[0].Rows.Count; i++)XWebEmailValidation xwevTest = new XWebEmailValidation();string sEmail = dsUsers.Tables[0].Rows[i][0].ToString();int iResponseCode = xwevTest.ValidateEmail(sEmail);if (iResponseCode == 0 || iResponseCode == -201)SqlParameter spUserID = new SqlParameter("@UserID", SqlDbType.Int);int)dsUsers.Tables[0].Rows[i][1];SQL_Tools.spExecute("InsertInValid", true, new SqlParameter[] { spUserID });