<?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>Wickasitha&#039;s tech Blog &#187; Visual Studio 2010</title>
	<atom:link href="http://blog.wickasitha.com/tag/visual-studio-2010/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.wickasitha.com</link>
	<description>blogging everything</description>
	<lastBuildDate>Fri, 27 Jan 2012 07:41:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Sample Application for .NET 4.0 &#8211; Layered Architecture and DDD Patterns Sample Applications</title>
		<link>http://blog.wickasitha.com/2011/08/sample-application-for-net-4-0-layered-architecture-and-ddd-patterns-sample-applications/</link>
		<comments>http://blog.wickasitha.com/2011/08/sample-application-for-net-4-0-layered-architecture-and-ddd-patterns-sample-applications/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 05:21:39 +0000</pubDate>
		<dc:creator>wickasitha</dc:creator>
				<category><![CDATA[Codeplex]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[New Tech]]></category>
		<category><![CDATA[Tech news]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[New Misrosoft technologies]]></category>

		<guid isPermaLink="false">http://blog.wickasitha.com/?p=1206</guid>
		<description><![CDATA[A code sample is worth a thousand words.  Here are a few projects to take a look at that go beyond just code snippets to show you how to put key technologies together in the form ofsample applications.  (Note, if you are looking for just code snippets and focused codesamples, you can check out the Microsoft [...]]]></description>
		<wfw:commentRss>http://blog.wickasitha.com/2011/08/sample-application-for-net-4-0-layered-architecture-and-ddd-patterns-sample-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retrieve value of Dynamic controls in asp.net</title>
		<link>http://blog.wickasitha.com/2011/04/retrieve-value-of-dynamic-controls-in-asp-net/</link>
		<comments>http://blog.wickasitha.com/2011/04/retrieve-value-of-dynamic-controls-in-asp-net/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 04:34:51 +0000</pubDate>
		<dc:creator>wickasitha</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tech news]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://blog.wickasitha.com/?p=1145</guid>
		<description><![CDATA[The main object of this article is to access value of  asp.net controls which are generated dynamically. For this, we will save viewstate of dynamic controls. Suppose we have one dropdown and one button. When user selects “Generate” option, the Dynamic table will be generated. In each cell of table there will be textbox. User enters [...]]]></description>
		<wfw:commentRss>http://blog.wickasitha.com/2011/04/retrieve-value-of-dynamic-controls-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parallel Computing Virtual Labs on MSDN</title>
		<link>http://blog.wickasitha.com/2011/01/parallel-computing-virtual-labs-msdn/</link>
		<comments>http://blog.wickasitha.com/2011/01/parallel-computing-virtual-labs-msdn/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 06:17:58 +0000</pubDate>
		<dc:creator>wickasitha</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[New Misrosoft technologies]]></category>
		<category><![CDATA[Parallel Computing]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://blog.wickasitha.com/?p=1129</guid>
		<description><![CDATA[Interested in trying out the support for parallel computing in Visual Studio 2010 or .NET 4,  You can now use the MSDN Virtual Labs site to try these out from the comforts of your favorite browser.  Multiple labs are available: Introducing .NET 4 Parallel Extensions Introduction to Parallel LINQ Introducing the C++ Concurrency Runtime Introducing the Visual [...]]]></description>
		<wfw:commentRss>http://blog.wickasitha.com/2011/01/parallel-computing-virtual-labs-msdn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canceling an async postback &#8211; ASP.NET AJAX</title>
		<link>http://blog.wickasitha.com/2010/05/canceling-async-postback-asp-net-ajax/</link>
		<comments>http://blog.wickasitha.com/2010/05/canceling-async-postback-asp-net-ajax/#comments</comments>
		<pubDate>Tue, 11 May 2010 05:38:49 +0000</pubDate>
		<dc:creator>wickasitha</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[New Misrosoft technologies]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://blog.wickasitha.com/?p=1030</guid>
		<description><![CDATA[Recently a new requirement came for cancel an async operation.  Being aware of the abortPostBack method the PageRequestManager, I figured that it would be pretty simple to implement this feature.  I added a &#8216;Cancel&#8217; button to my progress indicator and wired the onclick handler to invoke the abortPostBack method. Clicking cancel did abort the async postback however, because the [...]]]></description>
		<wfw:commentRss>http://blog.wickasitha.com/2010/05/canceling-async-postback-asp-net-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send Email from Gmail in .net</title>
		<link>http://blog.wickasitha.com/2010/01/send-email-from-gmail-in-net/</link>
		<comments>http://blog.wickasitha.com/2010/01/send-email-from-gmail-in-net/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 16:29:44 +0000</pubDate>
		<dc:creator>Wickasitha</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Send Email]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://blog.wickasitha.com/?p=741</guid>
		<description><![CDATA[try { //Create Mail Message Object with content that you want to send with mail. System.Net.Mail.MailMessage MyMailMessage = new System.Net.Mail.MailMessage(&#8220;from@yourdomain.com&#8221;, &#8220;to@yourdomain.com&#8221;, &#8220;This is the mail subject&#8221;, &#8220;This is the mail body&#8221;); MyMailMessage.IsBodyHtml = false; //Proper Authentication Details need to be passed when sending email from gmail System.Net.NetworkCredential mailAuthentication = new System.Net.NetworkCredential(&#8220;yourgmail&#8221;, &#8220;yourpassword&#8221;); //Smtp Mail server [...]]]></description>
		<wfw:commentRss>http://blog.wickasitha.com/2010/01/send-email-from-gmail-in-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What’s new in Visual Studio 2010 Rosario</title>
		<link>http://blog.wickasitha.com/2009/05/vs2010newfeatures/</link>
		<comments>http://blog.wickasitha.com/2009/05/vs2010newfeatures/#comments</comments>
		<pubDate>Sat, 30 May 2009 04:36:25 +0000</pubDate>
		<dc:creator>Wickasitha</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Lanka 1st]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[New Tech]]></category>
		<category><![CDATA[Tech news]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://blog.wickasitha.com/?p=624</guid>
		<description><![CDATA[Web Development JavaScript IntelliSense® is supported in visual studio editor One Click Deployment Full fledged support for Silverlight to provider rich internet applications Cloud Development Windows Azure™ Tools in Visual Studio 2010 developers can build, debug and deploy services and applications for Microsoft&#8217;s new cloud platform. More Databases In addition to SQL Server developers will [...]]]></description>
		<wfw:commentRss>http://blog.wickasitha.com/2009/05/vs2010newfeatures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2010 Beta 1 and .NET Framework 4.0 Beta 1 downloads</title>
		<link>http://blog.wickasitha.com/2009/05/vs2010/</link>
		<comments>http://blog.wickasitha.com/2009/05/vs2010/#comments</comments>
		<pubDate>Thu, 21 May 2009 08:00:40 +0000</pubDate>
		<dc:creator>Wickasitha</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[New Tech]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://blog.wickasitha.com/?p=579</guid>
		<description><![CDATA[The beta releases are now available to the general public via the Microsoft Download Center. For reference, you may also want to check out the Visual Studio 2010 Product Overview (1.02MB) five-page PDF document. Here is a quick list of all the download links that are now available: Visual Studio 2010 Professional Beta 1 &#8211; [...]]]></description>
		<wfw:commentRss>http://blog.wickasitha.com/2009/05/vs2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

