<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:georss="http://www.georss.org/georss" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">

<channel>
	<title>Free Code behind Snippets for Developers</title>
	<atom:link href="https://dotnetsnippets.wordpress.com/feed/" rel="self" type="application/rss+xml"/>
	<link>https://dotnetsnippets.wordpress.com</link>
	<description>You.Idea = Me.Sharing + Me.Helping</description>
	<lastBuildDate>Sat, 07 Nov 2009 03:02:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain="dotnetsnippets.wordpress.com" path="/?rsscloud=notify" port="80" protocol="http-post" registerProcedure=""/>
<image>
		<url>https://s0.wp.com/i/buttonw-com.png</url>
		<title>Free Code behind Snippets for Developers</title>
		<link>https://dotnetsnippets.wordpress.com</link>
	</image>
	<atom:link href="https://dotnetsnippets.wordpress.com/osd.xml" rel="search" title="Free Code behind Snippets for Developers" type="application/opensearchdescription+xml"/>
	<atom:link href="https://dotnetsnippets.wordpress.com/?pushpress=hub" rel="hub"/>
	<itunes:explicit>no</itunes:explicit><itunes:subtitle>You.Idea = Me.Sharing + Me.Helping</itunes:subtitle><item>
		<title>Simple CRUD on Visual Studio 2010</title>
		<link>https://dotnetsnippets.wordpress.com/2009/11/07/simple-crud-on-visual-studio-2010/</link>
					<comments>https://dotnetsnippets.wordpress.com/2009/11/07/simple-crud-on-visual-studio-2010/#respond</comments>
		
		<dc:creator><![CDATA[dotnetsnippets]]></dc:creator>
		<pubDate>Sat, 07 Nov 2009 03:02:48 +0000</pubDate>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[C# 4.0]]></category>
		<guid isPermaLink="false">http://dotnetsnippets.wordpress.com/?p=39</guid>

					<description><![CDATA[Hello Guys, I have sample here on how to create a simple Create, Read, Update, and Delete on Database. This sample created on Visual Studio 2010 Beta 2 using C# and Asp.Net. I did&#8217;nt include a validation on this sample. I only want to show on how to Select, Insert, Update, Delete on Database. For [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Hello Guys,</p>
<p>I have sample here on how to create a simple Create, Read, Update, and Delete on Database. This sample created on Visual Studio 2010 Beta 2 using C# and Asp.Net. I did&#8217;nt include a validation on this sample. I only want to show on how to Select, Insert, Update, Delete on Database. For those who beginners I hope it will help.</p>
<p>You can now download my Sample File at this <a href="http://www.4shared.com/file/147686227/eee75068/Simple_Database_CRUD_for_Beginners_110409.html&quot; target=_blank&gt;Simple Database CRUD for Beginners 110409.rar">Link</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://dotnetsnippets.wordpress.com/2009/11/07/simple-crud-on-visual-studio-2010/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/740341fdc2a6e94a20aab091103c99d24ea82a93ef76b84f824830c10aa156c4?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">dotnetsnippets</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating XML File on Visual Studio 2010</title>
		<link>https://dotnetsnippets.wordpress.com/2009/11/05/creating-xml-file-on-visual-studio-2010/</link>
					<comments>https://dotnetsnippets.wordpress.com/2009/11/05/creating-xml-file-on-visual-studio-2010/#respond</comments>
		
		<dc:creator><![CDATA[dotnetsnippets]]></dc:creator>
		<pubDate>Thu, 05 Nov 2009 00:37:16 +0000</pubDate>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[C# 4.0]]></category>
		<category><![CDATA[XML]]></category>
		<guid isPermaLink="false">http://dotnetsnippets.wordpress.com/?p=35</guid>

					<description><![CDATA[This code snippet will show you on how to create a simple xml file in Visual Studio 10 Beta 2. Step 1: Add a namespace to your code behind System.Xml and System.Text Step 2: In your event/method to create an xml file                            //Create a path were to save the xml file                 String path = Server.MapPath(@”FolderName\MyFileName.xml”);  [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>This code snippet will show you on how to create a simple xml file in Visual Studio 10 Beta 2.</p>
<p>Step 1: Add a namespace to your code behind System.Xml and System.Text</p>
<p>Step 2: In your event/method to create an xml file           </p>
<p>                //Create a path were to save the xml file</p>
<p>                String path = Server.MapPath(@”FolderName\MyFileName.xml”); </p>
<p>                //Instantiate an XmlWriterSettings</p>
<p>                var xmlWrite = new XmlWriterSettings();</p>
<p>                //And other Declaration</p>
<p>                xmlWrite.Indent = true;</p>
<p>                xmlWrite.OmitXmlDeclaration = true;</p>
<p>                xmlWrite.Encoding = Encoding.ASCII;</p>
<p>                //Then try to write a data in xml file</p>
<p>                Using (var write = XmlWriter.Create(path,xmlWrite))</p>
<p>               {</p>
<p>                write.WriteComment(“This is a basic sample on how to create xml file”);</p>
<p>                write.WriteStartElement(“Head”);</p>
<p>                write.WriteStartElement(“Header”);</p>
<p>                write.WriteStartAttribute(“Header”);</p>
<p>                write.WriteValue(HeaderValue);</p>
<p>                write.WriteEndAttribute();</p>
<p>                write.WriteEndElement(); </p>
<p>                write.WriteStartElement(“Footer”);</p>
<p>                write.WriteStartAttribute(“Footer”);</p>
<p>                write.WriteValue(FooterValue);</p>
<p>                 write.WriteEndAttribute();</p>
<p>                 write.WriteEndElement();</p>
<p>                 write.Flush();</p>
<p>                 }</p>
<p>That’s it. This sample created on asp.net project.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://dotnetsnippets.wordpress.com/2009/11/05/creating-xml-file-on-visual-studio-2010/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/740341fdc2a6e94a20aab091103c99d24ea82a93ef76b84f824830c10aa156c4?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">dotnetsnippets</media:title>
		</media:content>
	</item>
		<item>
		<title>Shortcut Keys on Visual Studio 2010 (Beta 1)</title>
		<link>https://dotnetsnippets.wordpress.com/2009/10/24/shortcut-keys-on-visual-studio-2010-beta-1/</link>
					<comments>https://dotnetsnippets.wordpress.com/2009/10/24/shortcut-keys-on-visual-studio-2010-beta-1/#respond</comments>
		
		<dc:creator><![CDATA[dotnetsnippets]]></dc:creator>
		<pubDate>Sat, 24 Oct 2009 01:12:43 +0000</pubDate>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>
		<guid isPermaLink="false">http://dotnetsnippets.wordpress.com/2009/10/24/shortcut-keys-on-visual-studio-2010-beta-1/</guid>

					<description><![CDATA[Hello Guys, I have some shortcut keys on Visual Studio 2010 Beta1. You can download it: Shortcut Keys on Visual Studio 2010]]></description>
										<content:encoded><![CDATA[<p>Hello Guys,</p>
<p>I have some shortcut keys on Visual Studio 2010 Beta1. You can download it: <a rel="attachment wp-att-27" href="https://dotnetsnippets.wordpress.com/2009/10/24/shortcut-keys-on-visual-studio-2010-beta-1/shortcut-keys-on-visual-studio-2010-2/">Shortcut Keys on Visual Studio 2010</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://dotnetsnippets.wordpress.com/2009/10/24/shortcut-keys-on-visual-studio-2010-beta-1/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/740341fdc2a6e94a20aab091103c99d24ea82a93ef76b84f824830c10aa156c4?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">dotnetsnippets</media:title>
		</media:content>
	</item>
		<item>
		<title>Shortcut Keys on SQL Server 2008</title>
		<link>https://dotnetsnippets.wordpress.com/2009/10/24/shortcut-keys-on-sql-server-2008/</link>
					<comments>https://dotnetsnippets.wordpress.com/2009/10/24/shortcut-keys-on-sql-server-2008/#respond</comments>
		
		<dc:creator><![CDATA[dotnetsnippets]]></dc:creator>
		<pubDate>Sat, 24 Oct 2009 01:08:03 +0000</pubDate>
				<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<guid isPermaLink="false">http://dotnetsnippets.wordpress.com/?p=21</guid>

					<description><![CDATA[Hello Guys, I have some shortcut keys on SQL Server 2008 you can download it. Shortcut Keys on SQL Server 2008]]></description>
										<content:encoded><![CDATA[<p>Hello Guys,</p>
<p>I have some shortcut keys on SQL Server 2008 you can download it. <a rel="attachment wp-att-22" href="https://dotnetsnippets.wordpress.com/2009/10/24/shortcut-keys-on-sql-server-2008/shortcut-keys-on-sql-server-2008/">Shortcut Keys on SQL Server 2008</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://dotnetsnippets.wordpress.com/2009/10/24/shortcut-keys-on-sql-server-2008/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/740341fdc2a6e94a20aab091103c99d24ea82a93ef76b84f824830c10aa156c4?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">dotnetsnippets</media:title>
		</media:content>
	</item>
		<item>
		<title>From VS 2008 and VS 2010 Beta 1 Changes</title>
		<link>https://dotnetsnippets.wordpress.com/2009/10/24/from-vs-2008-and-vs-2010-beta-1-changes/</link>
					<comments>https://dotnetsnippets.wordpress.com/2009/10/24/from-vs-2008-and-vs-2010-beta-1-changes/#respond</comments>
		
		<dc:creator><![CDATA[dotnetsnippets]]></dc:creator>
		<pubDate>Sat, 24 Oct 2009 00:59:59 +0000</pubDate>
				<category><![CDATA[Visual Studio 2010]]></category>
		<guid isPermaLink="false">http://dotnetsnippets.wordpress.com/?p=16</guid>

					<description><![CDATA[Hello Guys. Last months when I exploring the Visual Studio 2010 Beta 1, I notice that a lot of changes. I have top 10 lists of changes from VS 2008 to VS 2010 Beta 1, but these lists are from my first exploring on VS 2010 Beta1. The lists are basic but I know you [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Hello Guys.</p>
<p>Last months when I exploring the Visual Studio 2010 Beta 1, I notice that a lot of changes. I have top 10 lists of changes from VS 2008 to VS 2010 Beta 1, but these lists are from my first exploring on VS 2010 Beta1. The lists are basic but I know you will love it.</p>
<ol>
<li>Advance Dragging and Docking Window.</li>
<li>Markup snippets on HTML Source.</li>
<li>New Symbols on HTML tags.</li>
<li>Showing Intellesense contain the word that youve looking.</li>
<li>New look start page.</li>
<li>A close button in tabbed document.</li>
<li>Great highlight color.</li>
<li>Maximinzing the tabbed document.</li>
<li>Intellesense on adding namespace.</li>
<li>And some good changes.</li>
</ol>
<p>Download my attached file: <a rel="attachment wp-att-18" href="https://dotnetsnippets.wordpress.com/2009/10/24/from-vs-2008-and-vs-2010-beta-1-changes/some-difference-code-behind-and-html-tags-from-vs-2008-to-vs-2010/">Some Difference code behind and html tags from VS 2008 to VS 2010</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://dotnetsnippets.wordpress.com/2009/10/24/from-vs-2008-and-vs-2010-beta-1-changes/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/740341fdc2a6e94a20aab091103c99d24ea82a93ef76b84f824830c10aa156c4?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">dotnetsnippets</media:title>
		</media:content>
	</item>
		<item>
		<title>Download Visual Studio 2010 Beta 2</title>
		<link>https://dotnetsnippets.wordpress.com/2009/10/21/download-visual-studio-2010-beta-2/</link>
					<comments>https://dotnetsnippets.wordpress.com/2009/10/21/download-visual-studio-2010-beta-2/#respond</comments>
		
		<dc:creator><![CDATA[dotnetsnippets]]></dc:creator>
		<pubDate>Wed, 21 Oct 2009 01:38:33 +0000</pubDate>
				<category><![CDATA[Visual Studio 2010]]></category>
		<guid isPermaLink="false">http://dotnetsnippets.wordpress.com/2009/10/21/download-visual-studio-2010-beta-2/</guid>

					<description><![CDATA[Hello guys. Last month’s I downloaded the Visual Studio 2010 Beta 1. While exploring the VS 2010 Beta 1 I decided to make some blogs about it. But now the Beta 2 will release and ready to download on Wednesday October 21, 2009. Maybe I should download it and uninstall my Beta 1 and install [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Hello guys.</p>
<p>Last month’s I downloaded the Visual Studio 2010 Beta 1. While exploring the VS 2010 Beta 1 I decided to make some blogs about it. But now the Beta 2 will release and ready to download on Wednesday October 21, 2009.</p>
<p>Maybe I should download it and uninstall my Beta 1 and install the Beta 2. But this is also a Beta Version. The final release of Visual Studio 2010 and .NET Framework 4 are scheduled on March 22, 2010. And also there’s another options of developers will choose, because theirs four packages of VS 2010. The Ultimate, Premium, Professional, and Professional without MSDN subscription.</p>
<p>Download Now: <a href="http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx">http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx</a></p>
<p>Beta 2 Walkthroughs: <a href="http://msdn.microsoft.com/en-us/vstudio/dd441784.aspx">http://msdn.microsoft.com/en-us/vstudio/dd441784.aspx</a></p>
<p>Downloading and Installing: <a href="http://channel9.msdn.com/shows/10-4/10-4-Episode-33-Downloading-and-Installing-Visual-Studio-2010-Beta-2/">http://channel9.msdn.com/shows/10-4/10-4-Episode-33-Downloading-and-Installing-Visual-Studio-2010-Beta-2/</a></p>
<p>Visual 2010 Samples: <a href="http://msdn.microsoft.com/en-us/dd238515.aspx">http://msdn.microsoft.com/en-us/dd238515.aspx</a></p>
<p>Some Details About Packages: <a href="http://blogs.msdn.com/jasonz/archive/2009/10/19/announcing-vs2010-net-framework-beta-2.aspx">http://blogs.msdn.com/jasonz/archive/2009/10/19/announcing-vs2010-net-framework-beta-2.aspx</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://dotnetsnippets.wordpress.com/2009/10/21/download-visual-studio-2010-beta-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/740341fdc2a6e94a20aab091103c99d24ea82a93ef76b84f824830c10aa156c4?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">dotnetsnippets</media:title>
		</media:content>
	</item>
	</channel>
</rss>