Import contacts from Gmail in Asp.Net

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” …

How to unblock port from Windows Server 2008

Many developers have complain about port could not be unblocked although they added “INBOUND/OUTBOUND” rules in “Windows Firewall Advance Security” for “Apple Push Notification Service”, “Remotely Access SQL Server” etc. Port should not be unblocked until it should be unblocked from “Local Policy Security”. So, Please check your local policy security. For that, click on …

Convert any Office document to PDF using Open Office in C#.net

Things need to be installed Download from here Open Office Open Office SDK The required files listed below: cli_basetypes.dll cli_cppuhelper.dll cli_oootypes.dll cli_ure.dll cli_uretypes.dll If you have installed Open Office SDK, you will get these files under sdk\cli on you installed SDK folder. After give reference of above DLL files import following name space in .cs …