Is there any prob with the syntax for using the ContactImporter .Net component in C#
ContactImporter ci=new ContactImporter("email_id","paasoword","email_type .com"); Example: //To access contacts from
improsys@hotmail.com . example dim ci as new
ContactImporter("improsys","123456","hotmail.com")
//To access contacts from
improsys@gmail.com . example dim ci as new
ContactImporter("improsys","123456","gmail.com")
//To access contacts from
improsys@yahoo.com . example dim ci as new
ContactImporter("improsys","123456","yahoo.com")
ci.login();
if(ci.logged_in)
{
ci.getcontacts();
for(int i=0;i<emailArray.Length;i++)
{
Response.write(ci.nameArray[i]);
Response.write(ci.emailArray[i]);
}
}
** Links removed due to possible infraction **