<?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>TechArtifact &#187; ASP.NET 2.0</title>
	<atom:link href="http://www.techartifact.com/blogs/tag/aspnet-20/feed" rel="self" type="application/rss+xml" />
	<link>http://www.techartifact.com/blogs</link>
	<description>Techie blog</description>
	<lastBuildDate>Sat, 03 Jul 2010 08:11:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Regular Expression for Email Address validation in C#</title>
		<link>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html</link>
		<comments>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html#comments</comments>
		<pubDate>Sat, 06 Jun 2009 09:04:10 +0000</pubDate>
		<dc:creator>Ankit Goyal</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>
		<category><![CDATA[C#.NET 2.0]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=646</guid>
		<description><![CDATA[The task at hand is to validate the Textbox in asp.net for a valid email address. We can attach a RegularExpressionValidator to the text box with the following regular expression: &#60;asp:RegularExpressionValidator ValidationExpression=&#34;^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)&#124;(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}&#124;[0-9]{1,3})(\]?)$&#34; ID=&#34;rxpEmail&#34; runat=&#34;server&#34; ErrorMessage=&#34;Email Address is not valid&#34; Text=&#34;*&#34; Display=&#34;Static&#34; ControlToValidate=&#34;txtEmail&#34;&#62;&#60;/asp:RegularExpressionValidator&#62; UPDATES Well i searched the net for the standards of a valid email [...]]]></description>
		<wfw:commentRss>http://www.techartifact.com/blogs/2009/06/email-address-validation-in-csharp.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Twitter from ASP.NET Application</title>
		<link>http://www.techartifact.com/blogs/2009/05/twitter-from-aspnet-application.html</link>
		<comments>http://www.techartifact.com/blogs/2009/05/twitter-from-aspnet-application.html#comments</comments>
		<pubDate>Fri, 15 May 2009 12:00:17 +0000</pubDate>
		<dc:creator>Ankit Goyal</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>
		<category><![CDATA[C#.NET 2.0]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=555</guid>
		<description><![CDATA[This post will throw a light on how we can update our status on Twitter from an asp.net application. The task is pretty simple as we have libraries already available on the net. I will be using twitterizer dll to perform the task. The following are the steps to be followed: Download the twitterizer dll [...]]]></description>
		<wfw:commentRss>http://www.techartifact.com/blogs/2009/05/twitter-from-aspnet-application.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Save Asp.NET Session state in SQL Server</title>
		<link>http://www.techartifact.com/blogs/2009/05/save-aspnet-session-state-in-sql-server.html</link>
		<comments>http://www.techartifact.com/blogs/2009/05/save-aspnet-session-state-in-sql-server.html#comments</comments>
		<pubDate>Tue, 05 May 2009 07:49:27 +0000</pubDate>
		<dc:creator>Ankit Goyal</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=481</guid>
		<description><![CDATA[Session states of the asp.net application can be easily saved into SQL Server using the following steps: Change the settings in the web.config file. &#60;sessionState mode= allowCustomSqlDatabase=&#34;true&#34; cookieless=&#34;false&#34; timeout=&#34;20&#34; sqlConnectionString= &#34;database=Test_globalBms ; user id=abc;password=abc123$;server=172.27.68.1 &#34; /&#62; In the database create the appropriate tables.It is done automatically wen we execute the exe aspnet_regsql.exe located at C:\WINDOWS\Microsoft.NET\Framework\v2.0. [...]]]></description>
		<wfw:commentRss>http://www.techartifact.com/blogs/2009/05/save-aspnet-session-state-in-sql-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Blogs to an asp.net application</title>
		<link>http://www.techartifact.com/blogs/2009/04/adding-blogs-to-an-aspnet-application.html</link>
		<comments>http://www.techartifact.com/blogs/2009/04/adding-blogs-to-an-aspnet-application.html#comments</comments>
		<pubDate>Mon, 27 Apr 2009 11:53:53 +0000</pubDate>
		<dc:creator>Ankit Goyal</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[C#.NET 2.0]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=393</guid>
		<description><![CDATA[http://blogengine.codeplex.com/]]></description>
		<wfw:commentRss>http://www.techartifact.com/blogs/2009/04/adding-blogs-to-an-aspnet-application.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Forum capabilites to your .NET application</title>
		<link>http://www.techartifact.com/blogs/2009/04/add-forum-capabilites-to-your-net-application.html</link>
		<comments>http://www.techartifact.com/blogs/2009/04/add-forum-capabilites-to-your-net-application.html#comments</comments>
		<pubDate>Mon, 27 Apr 2009 11:26:26 +0000</pubDate>
		<dc:creator>Ankit Goyal</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>
		<category><![CDATA[C#.NET 2.0]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=385</guid>
		<description><![CDATA[Want to add a cool forum in your .net application? A forum where users can perform all the functions which are being used in the latest applications available till now? YetAnotherForum.NET An opensource project YetAnotherForum.NET is the answer to the questions raised above. YetAnotherForum.NET (YAF) is a Open Source discussion forum or bulletin board system [...]]]></description>
		<wfw:commentRss>http://www.techartifact.com/blogs/2009/04/add-forum-capabilites-to-your-net-application.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IP Address validation in C#</title>
		<link>http://www.techartifact.com/blogs/2009/04/ip-address-validation-in-csharp.html</link>
		<comments>http://www.techartifact.com/blogs/2009/04/ip-address-validation-in-csharp.html#comments</comments>
		<pubDate>Wed, 01 Apr 2009 13:43:24 +0000</pubDate>
		<dc:creator>Ankit Goyal</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>
		<category><![CDATA[C#.NET 2.0]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=260</guid>
		<description><![CDATA[In this post, I have used Regular expression to validate if the IP address provided as string is valid IP Address or not. Usefull when we want user to input IP address in our application and we want to check if the IP address is corrct format or not. public bool IsValidIP(string addr) { //create [...]]]></description>
		<wfw:commentRss>http://www.techartifact.com/blogs/2009/04/ip-address-validation-in-csharp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parsing an XML file from RSS feed with namespaces in C#</title>
		<link>http://www.techartifact.com/blogs/2009/03/parsing-an-xml-rss-file-with-namespaces-in-csharp.html</link>
		<comments>http://www.techartifact.com/blogs/2009/03/parsing-an-xml-rss-file-with-namespaces-in-csharp.html#comments</comments>
		<pubDate>Tue, 24 Mar 2009 12:10:54 +0000</pubDate>
		<dc:creator>Ankit Goyal</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>
		<category><![CDATA[C#.NET 2.0]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=219</guid>
		<description><![CDATA[The task is to parse a XML file retrieved from the RSS feed. Below is the sample partial XML file taken from a Leading Geographical alerts website&#8217;s RSS feeds. &#60;?xml version=&#34;1.0&#34; encoding=&#34;ISO-8859-1&#34;?&#62; &#60;rss version=&#34;2.0&#34; xmlns:geo=&#34;http://www.w3.org/2003/01/geo/&#34;&#62; &#60;channel&#62; &#60;pubDate&#62;Fri, 4 Jan 2008 09:51 GMT+1&#60;/pubDate&#62; &#60;item&#62; &#60;title&#62;Red alert: Tropical Cyclone SINLAKU-08.&#60;/title&#62; &#60;description&#62;Tropical Cyclone SINLAKU-08 .&#60;/description&#62; &#60;pubDate&#62;Tue, 16 Sep [...]]]></description>
		<wfw:commentRss>http://www.techartifact.com/blogs/2009/03/parsing-an-xml-rss-file-with-namespaces-in-csharp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Way to Pass Querystrings into Dynamically Loaded Usercontrol in ASP.NET</title>
		<link>http://www.techartifact.com/blogs/2009/03/new-way-to-pass-querystrings-into-dynamically-loaded-usercontrol-in-aspnet.html</link>
		<comments>http://www.techartifact.com/blogs/2009/03/new-way-to-pass-querystrings-into-dynamically-loaded-usercontrol-in-aspnet.html#comments</comments>
		<pubDate>Tue, 24 Mar 2009 07:02:28 +0000</pubDate>
		<dc:creator>Ankit Goyal</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET 2.0]]></category>
		<category><![CDATA[C#.NET 2.0]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=192</guid>
		<description><![CDATA[Problem: How to pass values into a usercontrol as querystrings in asp.net. More References to the problem as as follows: Pass querystring to user control? Pass QueryString as Integer to UserControl Solution: One Can definitely use Session Variables to give the functionality. Set the session variable value in the page and then retrieve the value [...]]]></description>
		<wfw:commentRss>http://www.techartifact.com/blogs/2009/03/new-way-to-pass-querystrings-into-dynamically-loaded-usercontrol-in-aspnet.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
