<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TechnoBlogy &#187; Google</title>
	<atom:link href="http://technoblogy.net/category/google/feed/" rel="self" type="application/rss+xml" />
	<link>http://technoblogy.net</link>
	<description>Technology with a Big difference</description>
	<lastBuildDate>Mon, 05 Dec 2011 17:29:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Import Google Contacts &#8211;  ASP.NET</title>
		<link>http://technoblogy.net/import-google-contacts-asp-net/</link>
		<comments>http://technoblogy.net/import-google-contacts-asp-net/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 07:41:04 +0000</pubDate>
		<dc:creator>taxi</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[addressbook]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[ContactsRequest]]></category>
		<category><![CDATA[dll]]></category>
		<category><![CDATA[Google contacts]]></category>
		<category><![CDATA[google data api]]></category>
		<category><![CDATA[Google.GData.Client]]></category>
		<category><![CDATA[Google.GData.Contacts]]></category>
		<category><![CDATA[Google.GData.Extensions]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[RequestSettings]]></category>

		<guid isPermaLink="false">http://technoblogy.net/?p=886</guid>
		<description><![CDATA[How can we download our google address book to some local DB, file etc? One of the coolest things google has provided for developers is the Google Data API for integration of user and google applications. And for importing google contacts, firstly we need to download Google Data API and install them to get the [...]]]></description>
			<content:encoded><![CDATA[<p>How can we download our google address book to some local DB, file etc? One of the coolest things google has provided for developers is the Google Data API for integration of user and google applications.</p>
<p>And for importing google contacts, firstly we need to download Google Data API and install them to get the required dlls. Then create a web application in Visual Studio, and add those dlls in your bin folder, or add reference of these dlls in your application.</p>
<p>Following dlls are being used for importing address book:</p>
<ul>
<li><strong>Google.GData.Client</strong></li>
<li><strong>Google.GData.Contacts</strong></li>
<li><strong>Google.GData.Extensions</strong></li>
</ul>
<p>Now place the required textboxes and button to fetch address book (Two textboxes for username and password, one listbox for address book and one button to start fetching).</p>
<p>following is the code snippet for declaring dll classes in your code behind:</p>
<blockquote><p>using Google.Contacts;</p>
<p>using Google.GData.Contacts;</p>
<p>using Google.GData.Client;</p>
<p>using Google.GData.Extensions;</p></blockquote>
<p>following code snippet is to be written behind your button’s click event:</p>
<blockquote><p>protected void btnAddressBook_Click(object sender, EventArgs e)</p>
<p>{</p>
<p>//Login Information</p>
<p>RequestSettings requestLoginInfo = new RequestSettings(&#8220;&#8221;, txtEmail.Text, txtPassword.Text);</p>
<p>rsLoginInfo.AutoPaging = true;</p>
<p>// Fetch addressbook and dislay them in ListBox</p>
<p>ContactsRequest conRequest = new ContactsRequest(requestLoginInfo);</p>
<p>Feed &lt;contact&gt; feedContacts = conRequest.GetContacts();</p>
<p>foreach (Contact addressbook in feedContacts.Entries)</p>
<p>{<br />
// Adding contact</p>
<p>lstContacts.Items.Add(addressbook.Title);</p>
<p>foreach (EMail emailId in addressbook.Emails)</p>
<p>{<br />
// Adding Emails for specific contact</p>
<p>lstContacts.Items.Add(&#8221; &#8221; + emailId.Address);</p>
<p>}</p>
<p>}</p>
<p>}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/import-google-contacts-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Team Viewer now available for Android</title>
		<link>http://technoblogy.net/team-viewer-now-available-for-android/</link>
		<comments>http://technoblogy.net/team-viewer-now-available-for-android/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 09:08:48 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Tools/Tech]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[file sharing]]></category>
		<category><![CDATA[remote access]]></category>
		<category><![CDATA[TeamViewer]]></category>

		<guid isPermaLink="false">http://technoblogy.net/?p=652</guid>
		<description><![CDATA[Team Viewer is an excellent screen sharing and file transfer application that can be used to facilitate business collaborations and remote desktops sharing.

]]></description>
			<content:encoded><![CDATA[<p>Team Viewer is an excellent screen sharing and file transfer application that can be used to facilitate business collaborations and remote desktops sharing.</p>
<p>Team Viewer has launched a new version “Team Viewer 6” in which they have also included it Android application as well. It was great tool for accessing computers remotely, and now it mobile variations gives more quick access. Previously it  has been developed for IPhone and IPads, and now its Android beta version is in market.</p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/11/teamviewer.jpg"><img class="alignnone size-medium wp-image-653" title="teamviewer" src="http://technoblogy.net/wp-content/uploads/2010/11/teamviewer-300x200.jpg" alt="" width="300" height="200" /></a></p>
<p>Here are some of the features:</p>
<ul>
<li>Support your clients and colleagues spontaneously.</li>
<li>Access your office desktop with all of its documents and installed applications.</li>
<li>Remotely administer unattended computers (e.g. servers).</li>
<p>People get this great tool for free before January 2011.</ul>
]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/team-viewer-now-available-for-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;Google Places&#8217; for Pakistan</title>
		<link>http://technoblogy.net/google-places-for-pakistan/</link>
		<comments>http://technoblogy.net/google-places-for-pakistan/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 08:24:57 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Places]]></category>
		<category><![CDATA[pakistan]]></category>

		<guid isPermaLink="false">http://technoblogy.net/google-places-for-pakistan/</guid>
		<description><![CDATA[Google does it again for Local businesses in Pakistan. Google has launched it services ‘Google Places’ which is the new version of ‘Local Business Centre’. It is free web based service for business owners to to claim their business and publish useful information about their business. This service will work on top of Google Maps.
]]></description>
			<content:encoded><![CDATA[<p><html xmlns=""></p>
<p$1$2$3$4$5$6>
<p>Google does it again for Local businesses in Pakistan. Google has launched it services ‘Google Places’ which is the new version of ‘Local Business Centre’. It is free web based service for business owners to to claim their business and publish useful information about their business. This service will work on top of Google Maps.</p>
<p>As it is integrated with Google Maps, so once your business is claimed on Google Places and geo tagged than, its location can be checked from any GPS enabled device, that results in easy access of customers to your business centre.</p>
<p$1$2$3$4$5$6>
<p>More detailed information regarding Google Places can be obtained from</p>
<p><a title="http://propakistani.pk/2010/10/26/google-launches-google-places-for-pakistan/" href="http://propakistani.pk/2010/10/26/google-launches-google-places-for-pakistan/">http://propakistani.pk/2010/10/26/google-launches-google-places-for-pakistan/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/google-places-for-pakistan/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Instant &#124; More faster Search from Google</title>
		<link>http://technoblogy.net/google-instant-more-faster-search-from-google/</link>
		<comments>http://technoblogy.net/google-instant-more-faster-search-from-google/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 08:02:53 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[instant]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://technoblogy.net/?p=576</guid>
		<description><![CDATA[Once again, Google fastest search engine has became more faster .  Sometimes when users do not know the exact keyword for their search, Google Instant Suggestion is the solution. More information on this can be obtained from: http://news.cnet.com/8301-30685_3-20015857-264.html?tag=rb_content;carouselMain]]></description>
			<content:encoded><![CDATA[<p>Once again, Google fastest search engine has became more faster <img src='http://technoblogy.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  Sometimes when users do not know the exact keyword for their search, Google Instant Suggestion is the solution.</p>
<p>More information on this can be obtained from:</p>
<p>http://news.cnet.com/8301-30685_3-20015857-264.html?tag=rb_content;carouselMain</p>
]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/google-instant-more-faster-search-from-google/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Squared</title>
		<link>http://technoblogy.net/google-squared/</link>
		<comments>http://technoblogy.net/google-squared/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 07:38:20 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[google squared]]></category>

		<guid isPermaLink="false">http://technoblogy.net/google-squared/</guid>
		<description><![CDATA[Many a times we have to search for something on the web and save its results for future use or for documenting purposes and also in a structured/ordered manner. There are many third party tools that can implement this scenario in a good way, but how can we done this directly in browser. That is [...]]]></description>
			<content:encoded><![CDATA[<p>Many a times we have to search for something on the web and save its results for future use or for documenting purposes and also in a structured/ordered manner. There are many third party tools that can implement this scenario in a good way, but how can we done this directly in browser.</p>
<p>That is how this can be done. <strong>Google Squared</strong> a new type of searching technique introduced by google and will be publicly available from next month.</p>
<p>It has many features like sorting of search results on timely basis. Innovation of tools like Wonder Wheel that can give you suggestions on search results.</p>
<p>This type of technology has obvious applications for many types of targeted searches, including product search, health search, scientific searches, you name it.</p>
<p>You can get more information regarding this new search technique by google on their official blogs: <a href="http://googleblog.blogspot.com/2009/05/more-search-options-and-other-updates.html">http://googleblog.blogspot.com/2009/05/more-search-options-and-other-updates.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/google-squared/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET charting &#8211; Google Chart API</title>
		<link>http://technoblogy.net/asp-net-charting-google-chart-api/</link>
		<comments>http://technoblogy.net/asp-net-charting-google-chart-api/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 15:20:36 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[chart api]]></category>
		<category><![CDATA[charting]]></category>
		<category><![CDATA[google chart api]]></category>

		<guid isPermaLink="false">http://technoblogy.net/asp-net-charting-google-chart-api/</guid>
		<description><![CDATA[Is charting a probelm in ASP.NET, try Google chart API, its free and robust. Following is the link to a very good article giving every bit of information on the above topic ASP.NET Charting with Google Chart API]]></description>
			<content:encoded><![CDATA[<p>Is charting a probelm in ASP.NET, try Google chart API, its free and robust.</p>
<p>Following is the link to a very good article giving every bit of information on the above topic</p>
<p><a href="http://aspnet.4guysfromrolla.com/articles/111908-1.aspx">ASP.NET Charting with Google Chart API</a></p>
]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/asp-net-charting-google-chart-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

