<?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>TheUnical Technologies Blog &#187; VB.Net</title>
	<atom:link href="http://blog.theunical.com/category/net/vb-dotnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.theunical.com</link>
	<description>TheUnical Technologies Official Blog</description>
	<lastBuildDate>Sun, 05 Feb 2012 21:46:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Simple 5 Steps to publish on a facebook wall using DotNet C#/ cSharp</title>
		<link>http://blog.theunical.com/facebook-integration/simple-5-steps-to-publish-on-a-facebook-wall-using-dotnet-c/</link>
		<comments>http://blog.theunical.com/facebook-integration/simple-5-steps-to-publish-on-a-facebook-wall-using-dotnet-c/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 07:47:02 +0000</pubDate>
		<dc:creator>Steven Wall</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[FaceBook Integration]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[VB.Net]]></category>
		<category><![CDATA[cSharp]]></category>
		<category><![CDATA[Facebook publish on wall]]></category>
		<category><![CDATA[publish on wall]]></category>
		<category><![CDATA[publish using c#]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/?p=305659</guid>
		<description><![CDATA[There are many Libraries available for C# and Dotnet to publish on facebook. According to facebook Wiki posting on a wall is very confusing and very difficult to write a program to publish on a wall. I spent around 2 weeks reading many articles and many documents, Wiki on facebook but in vein and tried [...]]]></description>
			<content:encoded><![CDATA[<p>There are many Libraries available for C# and Dotnet to publish on facebook.</p>
<p>According to facebook Wiki posting on a  wall is very confusing and very difficult to write a program to publish on a wall.</p>
<p>I spent around 2 weeks reading many articles and many documents, Wiki on facebook but in vein and tried many ways and finally I got one workable model. Below are 5 simple steps to publish on a Facebook wall.</p>
<h2><strong>Step1:</strong> Login to Facebook</h2>
<p>First login to Facebook and goto the url <a href="http://www.facebook.com/developers/" target="_blank">http://www.facebook.com/developers/</a> then</p>
<p>Click on “+ Set Up New Application” button to start creating the application as shown below.</p>
<p><img class="alignnone size-full wp-image-133432" title="start application" src="http://blog.theunical.com/wp-content/uploads/2009/11/start-application.jpg" alt="start application" width="211" height="95" /></p>
<p>Provide the application name, click agree for facebook terms and click on “Create Application” button.</p>
<p>Fill in application Name</p>
<p><img class="alignnone size-full wp-image-133433" title="create app step1" src="http://blog.theunical.com/wp-content/uploads/2009/11/create-app-step1.jpg" alt="create app step1" width="570" height="218" /></p>
<p>Now Application is created for you. Just copy the Application API Key, Application Secret and Application ID details which will be used to write the application code.</p>
<p><img class="alignnone size-full wp-image-133434" title="application page" src="http://blog.theunical.com/wp-content/uploads/2009/11/application-page.jpg" alt="application page" width="571" height="706" /></p>
<p>Now goto Canvas link and enter any url.</p>
<p><img class="alignnone size-full wp-image-133435" title="canvaspage" src="http://blog.theunical.com/wp-content/uploads/2009/11/canvaspage.jpg" alt="canvaspage" width="574" height="125" /></p>
<p>Next goto Connect URL link and enter the same url.</p>
<p><img class="alignnone size-full wp-image-133436" title="connecturl" src="http://blog.theunical.com/wp-content/uploads/2009/11/connecturl.jpg" alt="connecturl" width="576" height="182" /></p>
<p>Then click on Save. That&#8217;s it we have created a facebook application with an Iframe.</p>
<p>Now Copy Application API Key, Application Secret and Application ID details which will be used to write the application code.</p>
<p>Now download any of the available libraries on facebook <a href="http://wiki.developers.facebook.com/index.php/User:ASP.NET" target="_blank">http://wiki.developers.facebook.com/index.php/User:ASP.NET</a></p>
<p>(OR)</p>
<p><a title="http://www.codeplex.com/FacebookToolkit" rel="nofollow" href="http://www.codeplex.com/FacebookToolkit">Microsoft SDK for Facebook Platform</a>, which supports <a title="Facebook Connect" href="http://wiki.developers.facebook.com/index.php/Facebook_Connect">Facebook Connect</a>, FBML and IFrame canvas page applications, and <a title="ASP.NET MVC" href="http://wiki.developers.facebook.com/index.php/ASP.NET_MVC">ASP.NET MVC</a>. For issues and discussions about the SDK see the project on <a title="http://www.codeplex.com/FacebookToolkit" rel="nofollow" href="http://www.codeplex.com/FacebookToolkit">Codeplex</a>.</p>
<h2><strong>Step2: </strong><strong>Generate One Time Session key</strong></h2>
<p><strong>How to generate One Time Session key:</strong></p>
<p>Run below URL to get temporary token for the selected user by logging into Facebook.</p>
<p><a href="https://login.facebook.com/code_gen.php?api_key=API_KEY&amp;v=1.0">https://login.facebook.com/code_gen.php?api_key=API_KEY&amp;v=1.0</a></p>
<p>Note: Please replace “API_KEY” with your application API key from above page.</p>
<p>Then we will get a temporary token key.</p>
<p><img class="alignnone size-full wp-image-133567" title="allowaccess" src="http://blog.theunical.com/wp-content/uploads/2009/11/allowaccess.jpg" alt="allowaccess" width="503" height="319" /></p>
<p><img class="alignnone size-full wp-image-133569" title="generatemylogin info" src="http://blog.theunical.com/wp-content/uploads/2009/11/generatemylogin-info1.jpg" alt="generatemylogin info" width="749" height="157" /></p>
<p><img class="alignnone size-full wp-image-133570" title="savemyinfo" src="http://blog.theunical.com/wp-content/uploads/2009/11/savemyinfo.jpg" alt="savemyinfo" width="580" height="145" /></p>
<p>This is one time token key that we can use to generate a permanent session key. Careful! Don&#8217;t try to execute this programs many times</p>
<h2><strong>Step3: </strong>Generate one time session key</h2>
<p>Below is the sample code to generate one time session key.</p>
<div style="overflow: auto; width: 700px;">
<p>For example, the full URL for logging in a user could be:</p>
<div style="border: 1px solid #ffdd88; padding: 5px; background-color: #ffeebb; font-family: Monaco,monospace; line-height: 1.3em; white-space: pre;">http://www.facebook.com/login.php?api_key=YOURAPIKEY&amp;connect_display=popup&amp;v=1.0&amp;next=http://www.facebook.com/connect/login_success.html&amp;cancel_url=http://www.facebook.com/connect/login_failure.html&amp;fbconnect=true&amp;return_session=true&amp;session_key_only=true&amp;req_perms=read_stream,publish_stream,offline_access</div>
<p>If the user is redirected to the URL specified by the <code>next</code> parameter, then Facebook grants your application a session. This session is appended to the URL as a JSON-decodable object of the form:</p>
<div style="border: 1px solid #ffdd88; padding: 5px; background-color: #ffeebb; font-family: Monaco,monospace; line-height: 1.3em; white-space: pre;">&amp;session={“session_key”:”SESSIONKEY”, “uid”:USERID, “expires”:0 || UNIXTIME, “secret”:”SESSIONSECRET”}</div>
<p>In continuing with the above example, the redirect for a successful login would be:</p>
<div style="border: 1px solid #ffdd88; padding: 5px; background-color: #ffeebb; font-family: Monaco,monospace; line-height: 1.3em; white-space: pre;">http://www.facebook.com/connect/login_success.html?session=%7B%22session_key%22%3A%223.kxhAu6W0qo_bLGjmdWrgfw__.86400.1243443600-688626964%22%2C%22uid%22%3A%22688626964%22%2C%22expires%22%3A1243443600%2C%22secret%22%3A%220NVNMxpO6jVyDcVCvVv_PA__%22%2C%22sig%22%3A%22ac1c0c77c137567389defea70481b7aa%22%7D</div>
<p>If the user grants your application the offline_access <a title="Extended permissions" href="http://wiki.developers.facebook.com/index.php/Extended_permissions">extended permission</a>, 0 gets returned for <code>expires</code> and the session never expires unless the user removes the application. In this case, you should store the session key so the user doesn&#8217;t have to log in the next time he or she launches your application.</p>
<p>Once the browser has been redirected successfully and you have your session information, you should automatically close the browser window.<br />
<strong>Note: The above code will execute only once. We should note down the above session key, This will be used to auto login into the application.</strong></div>
<p><strong> </strong></p>
<p><strong>If you don’t save these session key values you should generate other token key to create one time session key.</strong></p>
<p><strong> </strong></p>
<p><strong><br />
</strong></p>
<h2><strong>Step4:</strong></h2>
<p>Giving Permission to your application to publish on facebook wall. To give permission just replace the your API key in below URL and execute in browser.</p>
<div style="overflow: auto; width: 700px;"><strong>http://www.facebook.com/login.php?api_key=APIKEYXxxxxxxxxxxxxxxxxx&amp;connect_display=popup&amp;v=1.0&amp;next=http://www.facebook.com/connect/login_success.html&amp;cancel_url=http://www.facebook.com/connect/login_failure.html&amp;fbconnect=true&amp;return_session=true&amp;req_perms=read_stream,publish_stream,offline_access</strong></p>
<p>Then you must see the below 3 Screens</p>
<p>If you don&#8217;t see the below then your call back URL or Canvas URL must be incorrect, please check again your application settings and execute the URL again.</p>
<p><img class="alignnone size-full wp-image-133573" title="allowpermission" src="http://blog.theunical.com/wp-content/uploads/2009/11/allowpermission.jpg" alt="allowpermission" width="229" height="62" /></p>
<p><img class="alignnone size-medium wp-image-133574" title="allowpublishing" src="http://blog.theunical.com/wp-content/uploads/2009/11/allowpublishing-300x87.jpg" alt="allowpublishing" width="300" height="87" /></div>
<p>Then on final page, you will see a success message.  That&#8217;s it you have given permission for <strong>read_stream,publish_stream and offline_access</strong>.</p>
<h2><strong>Step5:</strong><strong> Publishing the message with Image and link on Facebook Wall using cSharp/ C#<br />
</strong></h2>
<p><strong>Publishing a Post With Image and Action Link in C# using facebook developer toolkit v2</strong></p>
<p><strong>C# Code to create facebook object with onetime session key and publishing the message on Facebook Wall.</strong></p>
<pre class="brush: csharp">public void Post(facebook.API fbAPI, string appLink)
{
 string response = fbAPI.stream.publish( "publish steven on facebook.",
new attachment() {
name = "I am a good guy !", href = appLink, caption = "{*actor*} Steven Publish on facebook wall",
description = "Helping other people, I became a new good guy.", properties = null,
 media = new List&lt;attachment_media&gt;() { new attachment_media_image()
{ src = "http://blog.theunical.com/wp-content/uploads/2009/11/start-application.jpg", href = appLink } } },
new List&lt;action_link&gt;() { new action_link() { text = "Become a good guy",
 href = appLink } }, null, 0);
}</pre>
<p>Now you will see the post on wall Great.</p>
<p><img class="alignnone size-full wp-image-133575" title="published on facebook" src="http://blog.theunical.com/wp-content/uploads/2009/11/published-on-facebook.jpg" alt="published on facebook" width="557" height="211" /></p>
<p>So thrilling isn&#8217;t we can also publish photos videos on wall.</p>
<p>http://wiki.developers.facebook.com/index.php/Stream.publish</p>
<p>have a great day</p>
<p>&#8211; Steven</p>
<p>Please don&#8217;t copy this content to any site. This is fully protected by TheUnical Technologies</p>
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/facebook-integration/simple-5-steps-to-publish-on-a-facebook-wall-using-dotnet-c/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>Good Visual Studio Tutorials from www.visualstudio2010.learn.net.in</title>
		<link>http://blog.theunical.com/net/good-visual-studio-tutorials-from-www-visualstudio2010-learn-net-in/</link>
		<comments>http://blog.theunical.com/net/good-visual-studio-tutorials-from-www-visualstudio2010-learn-net-in/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 12:23:16 +0000</pubDate>
		<dc:creator>Steven Wall</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[VB.Net]]></category>
		<category><![CDATA[Visual Studio Tutorials]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/?p=269868</guid>
		<description><![CDATA[Good Visual Studio Tutorials Links. Happy Reading.. www.visualstudio2010.learn.net.in visual studio 2010 visual studio 2010 download visual studio 2010 release date microsoft visual studio 2010 visual studio 2010 release visual studio 2010 screenshots visual studio 2010 features visual studio 2010 wiki visual studio 2010 blog visual studio 2010 rapidshare visual studio 2010 review visual studio 2010 [...]]]></description>
			<content:encoded><![CDATA[<p>Good Visual Studio Tutorials Links.</p>
<p>Happy Reading..</p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/">www.visualstudio2010.learn.net.in</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010">visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+download">visual studio 2010 download</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+release+date">visual studio 2010 release date</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=microsoft+visual+studio+2010">microsoft visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+release">visual studio 2010 release</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+screenshots">visual studio 2010 screenshots</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+features">visual studio 2010 features</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+wiki">visual studio 2010 wiki</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+blog">visual studio 2010 blog</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+rapidshare">visual studio 2010 rapidshare</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+review">visual studio 2010 review</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+screenshot">visual studio 2010 screenshot</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+video">visual studio 2010 video</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=microsoft+visual+studio+2010+download">microsoft visual studio 2010 download</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+iso">visual studio 2010 iso</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+new+features">visual studio 2010 new features</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+preview">visual studio 2010 preview</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=what%27s+new+in+visual+studio+2010">what&#8217;s new in visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+mfc">visual studio 2010 mfc</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+msdn">visual studio 2010 msdn</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+requirements">visual studio 2010 requirements</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+wikipedia">visual studio 2010 wikipedia</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+ctp2">visual studio 2010 ctp2</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+news">visual studio 2010 news</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+password">visual studio 2010 password</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+professional">visual studio 2010 professional</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+sdk">visual studio 2010 sdk</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+what%27s+new">visual studio 2010 what&#8217;s new</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+downloads">visual studio 2010 downloads</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+expired">visual studio 2010 expired</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+launch">visual studio 2010 launch</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+trial">visual studio 2010 trial</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+videos">visual studio 2010 videos</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=whats+new+in+visual+studio+2010">whats new in visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=new+features+in+visual+studio+2010">new features in visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=new+in+visual+studio+2010">new in visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+c">visual studio 2010 c#</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+demo">visual studio 2010 demo</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+extensibility">visual studio 2010 extensibility</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+ide">visual studio 2010 ide</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+intellisense">visual studio 2010 intellisense</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+launch+date">visual studio 2010 launch date</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+multi+monitor">visual studio 2010 multi monitor</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+price">visual studio 2010 price</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+screen+shots">visual studio 2010 screen shots</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+slow">visual studio 2010 slow</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+tutorial">visual studio 2010 tutorial</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=features+of+visual+studio+2010">features of visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=release+date+for+visual+studio+2010">release date for visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+activation">visual studio 2010 activation</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+forum">visual studio 2010 forum</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+parallel">visual studio 2010 parallel</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=buy+visual+studio+2010">buy visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=date+visual+studio+2010">date visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=how+to+install+visual+studio+2010">how to install visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=install+visual+studio+2010">install visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=installing+visual+studio+2010">installing visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=release+date+of+visual+studio+2010">release date of visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+.net">visual studio 2010 .net</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+64">visual studio 2010 64</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+architecture">visual studio 2010 architecture</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+asp+net">visual studio 2010 asp net</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+asp+net+mvc">visual studio 2010 asp net mvc</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+changes">visual studio 2010 changes</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+expiration">visual studio 2010 expiration</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+expire">visual studio 2010 expire</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+extension">visual studio 2010 extension</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+feedback">visual studio 2010 feedback</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+free">visual studio 2010 free</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+installation">visual studio 2010 installation</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+jquery">visual studio 2010 jquery</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+mef">visual studio 2010 mef</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+performance">visual studio 2010 performance</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+released">visual studio 2010 released</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+screen">visual studio 2010 screen</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+ship+date">visual studio 2010 ship date</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+timeline">visual studio 2010 timeline</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+training">visual studio 2010 training</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+upgrade">visual studio 2010 upgrade</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+virtual">visual studio 2010 virtual</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+web">visual studio 2010 web</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=visual+studio+2010+windows+xp">visual studio 2010 windows xp</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=welcome+to+visual+studio+2010">welcome to visual studio 2010</a></strong></p>
<p><strong><a href="http://www.visualstudio2010.learn.net.in/videos/index.php?search=when+visual+studio+2010">when visual studio 2010</a></strong></p>
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/net/good-visual-studio-tutorials-from-www-visualstudio2010-learn-net-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

