<?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; ASP.NET 2.0</title>
	<atom:link href="http://blog.theunical.com/category/asp-net-2-0/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.theunical.com</link>
	<description>TheUnical Technologies Official Blog</description>
	<lastBuildDate>Fri, 30 Jul 2010 03:56:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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 Robert</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 many [...]]]></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" />
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=305659&type=feed" alt="" />]]></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>15</slash:comments>
		</item>
		<item>
		<title>Multi-tenancy in ASP.NET MVC &#8211; Breaking it down</title>
		<link>http://blog.theunical.com/asp/multi-tenancy-in-asp-net-mvc-breaking-it-down-5/</link>
		<comments>http://blog.theunical.com/asp/multi-tenancy-in-asp-net-mvc-breaking-it-down-5/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:02:01 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/asp/multi-tenancy-in-asp-net-mvc-breaking-it-down-5/</guid>
		<description><![CDATA[In the last entry, we covered the basics of what I consider multi-tenancy to be, and why we might perhaps want to write our ASP.NET MVC web application with &#8230;
]]></description>
			<content:encoded><![CDATA[<p>In the last entry, we covered the basics of what I consider multi-tenancy to be, and why we might perhaps want to write our <b>ASP.NET</b> MVC web application with <b>&#8230;</b></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=297726&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/asp/multi-tenancy-in-asp-net-mvc-breaking-it-down-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download details: ASP.NET MVC 2 RC 2</title>
		<link>http://blog.theunical.com/asp/download-details-asp-net-mvc-2-rc-2-5/</link>
		<comments>http://blog.theunical.com/asp/download-details-asp-net-mvc-2-rc-2-5/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:02:00 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/asp/download-details-asp-net-mvc-2-rc-2-5/</guid>
		<description><![CDATA[ASP.NET MVC 2 RC 2 provides a new Model-View-Controller (MVC) framework on top of the existing ASP.NET 3.5 SP1 runtime.
]]></description>
			<content:encoded><![CDATA[<p><b>ASP.NET</b> MVC 2 RC 2 provides a new Model-View-Controller (MVC) framework on top of the existing <b>ASP.NET</b> 3.5 SP1 runtime.</p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=297721&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/asp/download-details-asp-net-mvc-2-rc-2-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Professional ASP.NET 2.0 XML &#124; ebooks library</title>
		<link>http://blog.theunical.com/asp/professional-asp-net-2-0-xml-ebooks-library-6/</link>
		<comments>http://blog.theunical.com/asp/professional-asp-net-2-0-xml-ebooks-library-6/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:01:59 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/asp/professional-asp-net-2-0-xml-ebooks-library-6/</guid>
		<description><![CDATA[Publisher: Wrox Language: English ISBN: 0764596772 Paperback: 566 pages Data: January 18, 2006 Format: PDF Description: * The foundation for most Web.

ebooks library &#8211; http://www.ebookslib.org/
]]></description>
			<content:encoded><![CDATA[<p>Publisher: Wrox Language: English ISBN: 0764596772 Paperback: 566 pages Data: January 18, 2006 Format: PDF Description: * The foundation for most Web.</p>
<p><a href="http://www.ebookslib.org/" title="http://www.ebookslib.org/"><br />
ebooks library &#8211; http://www.ebookslib.org/</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=297716&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/asp/professional-asp-net-2-0-xml-ebooks-library-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>THINGS TO DOWNLOAD: Pro ASP.NET 3.5 in C# 2008 -=[BonVD]=-</title>
		<link>http://blog.theunical.com/asp/things-to-download-pro-asp-net-3-5-in-c-2008-bonvd-6/</link>
		<comments>http://blog.theunical.com/asp/things-to-download-pro-asp-net-3-5-in-c-2008-bonvd-6/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:01:57 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/asp/things-to-download-pro-asp-net-3-5-in-c-2008-bonvd-6/</guid>
		<description><![CDATA[As you no doubt already know, ASP.NET is Microsoft&#39;s next-generation technology for creating server-side web applications. It&#39;s built on the Microsoft .NET Framework, which is a cluster of closely &#8230;

THINGS TO DOWNLOAD &#8211; http://vikramdhananja.blogspot.com/
]]></description>
			<content:encoded><![CDATA[<p>As you no doubt already know, <b>ASP.NET</b> is Microsoft&#39;s next-generation technology for creating server-side web applications. It&#39;s built on the Microsoft .NET Framework, which is a cluster of closely <b>&#8230;</b></p>
<p><a href="http://vikramdhananja.blogspot.com/" title="http://vikramdhananja.blogspot.com/"><br />
THINGS TO DOWNLOAD &#8211; http://vikramdhananja.blogspot.com/</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=297711&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/asp/things-to-download-pro-asp-net-3-5-in-c-2008-bonvd-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create object in Asp.net &#8211; ASP.NET</title>
		<link>http://blog.theunical.com/asp/create-object-in-asp-net-asp-net/</link>
		<comments>http://blog.theunical.com/asp/create-object-in-asp-net-asp-net/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:01:56 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/asp/create-object-in-asp-net-asp-net/</guid>
		<description><![CDATA[Create object in Asp.net ASP.NET. &#8230; 7 Hours Ago. hi all, Is this is there any way in asp.net to create object of a web form in any other web form to access its member function ?? Quick reply to this message &#8230;

DaniWeb IT Discussion Community &#8211; http://www.daniweb.com/news/writer311962.html
]]></description>
			<content:encoded><![CDATA[<p>Create object in <b>Asp.net ASP.NET</b>. <b>&#8230;</b> 7 Hours Ago. hi all, Is this is there any way in <b>asp.net</b> to create object of a web form in any other web form to access its member function ?? Quick reply to this message <b>&#8230;</b></p>
<p><a href="http://www.daniweb.com/news/writer311962.html" title="http://www.daniweb.com/news/writer311962.html"><br />
DaniWeb IT Discussion Community &#8211; http://www.daniweb.com/news/writer311962.html</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=297706&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/asp/create-object-in-asp-net-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC 2 RC2 Released</title>
		<link>http://blog.theunical.com/asp/asp-net-mvc-2-rc2-released-9/</link>
		<comments>http://blog.theunical.com/asp/asp-net-mvc-2-rc2-released-9/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:01:55 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/asp/asp-net-mvc-2-rc2-released-9/</guid>
		<description><![CDATA[After the positive feedback from ASP.NET MVC 2 RC1, Microsoft has decided to release RC2 (Release Candidate 2). This release fixes a few bugs in the RC, but adds one big feature, and that&#39;s a change to the validation model. &#8230;

DevCurry &#8211; http://www.devcurry.com/
]]></description>
			<content:encoded><![CDATA[<p>After the positive feedback from <b>ASP.NET</b> MVC 2 RC1, Microsoft has decided to release RC2 (Release Candidate 2). This release fixes a few bugs in the RC, but adds one big feature, and that&#39;s a change to the validation model. <b>&#8230;</b></p>
<p><a href="http://www.devcurry.com/" title="http://www.devcurry.com/"><br />
DevCurry &#8211; http://www.devcurry.com/</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=297701&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/asp/asp-net-mvc-2-rc2-released-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skitsanos for RIA: Predictive Fetch with jQuery and the ASP.NET &#8230;</title>
		<link>http://blog.theunical.com/asp/skitsanos-for-ria-predictive-fetch-with-jquery-and-the-asp-net-5/</link>
		<comments>http://blog.theunical.com/asp/skitsanos-for-ria-predictive-fetch-with-jquery-and-the-asp-net-5/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:01:53 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/asp/skitsanos-for-ria-predictive-fetch-with-jquery-and-the-asp-net-5/</guid>
		<description><![CDATA[In the ASP.NET Ajax Library, the mechanics of master-detail views are largely defined in the logic of the DataView component and in the way the component handles and exposes its events. This month I&#39;ll go one step further and discuss &#8230;

Skitsanos for RIA &#8211; http://blog.skitsanos.com/
]]></description>
			<content:encoded><![CDATA[<p>In the <b>ASP.NET</b> Ajax Library, the mechanics of master-detail views are largely defined in the logic of the DataView component and in the way the component handles and exposes its events. This month I&#39;ll go one step further and discuss <b>&#8230;</b></p>
<p><a href="http://blog.skitsanos.com/" title="http://blog.skitsanos.com/"><br />
Skitsanos for RIA &#8211; http://blog.skitsanos.com/</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=297696&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/asp/skitsanos-for-ria-predictive-fetch-with-jquery-and-the-asp-net-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Well, we&#039;re still blogging, anyway</title>
		<link>http://blog.theunical.com/asp/well-were-still-blogging-anyway/</link>
		<comments>http://blog.theunical.com/asp/well-were-still-blogging-anyway/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:01:50 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/asp/well-were-still-blogging-anyway/</guid>
		<description><![CDATA[We&#39;re Microsoft fans here at LiveSide, and we try to use Microsoft products whenever we can, which is why we&#39;re on Community Server (an ASP.net solution), &#8230;

See all stories on this topic
]]></description>
			<content:encoded><![CDATA[<p>We&#39;re Microsoft fans here at LiveSide, and we try to use Microsoft products whenever we can, which is why we&#39;re on Community Server (an <b>ASP.net</b> solution), <b>&#8230;</b><br />
<a href="http://news.google.com/news/story?ncl=http://www.liveside.net/main/archive/2010/02/06/well-we-re-still-blogging-anyway.aspx&amp;hl=en"><br />
See all stories on this topic</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=297691&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/asp/well-were-still-blogging-anyway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASPNET Release ASPNET MVC 2 RC 2</title>
		<link>http://blog.theunical.com/asp/aspnet-release-aspnet-mvc-2-rc-2-6/</link>
		<comments>http://blog.theunical.com/asp/aspnet-release-aspnet-mvc-2-rc-2-6/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:01:48 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/asp/aspnet-release-aspnet-mvc-2-rc-2-6/</guid>
		<description><![CDATA[Microsoft Source License for ASPNET PreRelease Components This license governs use of the accompanying software If you use the software you accept this &#8230;
]]></description>
			<content:encoded><![CDATA[<p>Microsoft Source License for <b>ASPNET</b> PreRelease Components This license governs use of the accompanying software If you use the software you accept this <b>&#8230;</b></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=297686&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/asp/aspnet-release-aspnet-mvc-2-rc-2-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
