Download Google Contact API from below link. http://google-gdata.googlecode.com/files/Google%20Data%20API%20Setup%281.4.0.2%29.msi Add reference to your project following DLL files. Google.GData.Apps.dll, Google.GData.Client.dll, Google.GData.Contacts.dll, Google.GData.Extensions.dll .Aspx page look like this <html xmlns=”http://www.w3.org/1999/xhtml”> <head runat=”server”> <title>IMport Gmail Contacts</title> </head> <body> <form id=”frmGmailContacts” runat=”server”> <div> <table> <tr> <td> UserName</td> <td> <asp:TextBox ID=”txtUsername” runat=”server”></asp:TextBox> </td> </tr> <tr> <td> Password</td> <td> <asp:TextBox ID=”txtPassword” runat=”server” …
Import contacts from Gmail in Asp.Net
