<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Neoob blog &#187; .Net</title>
	<atom:link href="http://ntcnet.wordpress.com/tag/net/feed/" rel="self" type="application/rss+xml" />
	<link>http://ntcnet.wordpress.com</link>
	<description>Share And Share every Thing!</description>
	<lastBuildDate>Mon, 27 Apr 2009 09:53:25 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ntcnet.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/534515b3022fe51129fb027ece647a92?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Neoob blog &#187; .Net</title>
		<link>http://ntcnet.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ntcnet.wordpress.com/osd.xml" title="Neoob blog" />
		<item>
		<title>Encrypting and decrypting data</title>
		<link>http://ntcnet.wordpress.com/2009/04/16/encrypting-and-decrypting-data/</link>
		<comments>http://ntcnet.wordpress.com/2009/04/16/encrypting-and-decrypting-data/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 08:27:08 +0000</pubDate>
		<dc:creator>ntcnet</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://ntcnet.wordpress.com/?p=76</guid>
		<description><![CDATA[ I am seeing a lot of questions people are asking on how  	to do encryption/decryption. To help those people I have written a simple  	class encorporating several encryption/decryption functions:


 byte[] Encrypt(byte[] clearData,  			byte[] Key, byte[] IV) &#8211; encrypts a byte array with a key  			and an IV and returns a byte [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ntcnet.wordpress.com&blog=2189552&post=76&subd=ntcnet&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ntcnet.wordpress.com/2009/04/16/encrypting-and-decrypting-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/95899cfe283a6aae3682ffb0ba3a00b4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ntcnet</media:title>
		</media:content>
	</item>
		<item>
		<title>Encrypt / Decrypt Section in Configuration File</title>
		<link>http://ntcnet.wordpress.com/2008/01/18/encrypt-decrypt-section-in-configuration-file/</link>
		<comments>http://ntcnet.wordpress.com/2008/01/18/encrypt-decrypt-section-in-configuration-file/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 03:23:24 +0000</pubDate>
		<dc:creator>ntcnet</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://ntcnet.wordpress.com/2008/01/18/encrypt-decrypt-section-in-configuration-file/</guid>
		<description><![CDATA[Lets understand Encrypt and Decrypt particular section in web.config file with example of connectionstring encrypt in web.config file.

Add Namespace
using System.Web.Configuration;
How to Encrypt Connection String in Asp.net stored in Web.Config file
 protected void Button1_Click(object sender, EventArgs e) {
  String webConfigPath = “~”;
 
 Configuration config =   WebConfigurationManager.OpenWebConfiguration(webConfigPath);
 
 
 ConfigurationSection configSection = config.GetSection(&#8220;connectionStrings&#8221;);
configSection.SectionInformation.ProtectSection(&#8220;DataProtectionConfigurationProvider&#8221;);
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ntcnet.wordpress.com&blog=2189552&post=27&subd=ntcnet&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ntcnet.wordpress.com/2008/01/18/encrypt-decrypt-section-in-configuration-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/95899cfe283a6aae3682ffb0ba3a00b4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ntcnet</media:title>
		</media:content>
	</item>
		<item>
		<title>URL Mapping in asp.net 2.0</title>
		<link>http://ntcnet.wordpress.com/2008/01/18/url-mapping-in-aspnet-20/</link>
		<comments>http://ntcnet.wordpress.com/2008/01/18/url-mapping-in-aspnet-20/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 03:22:17 +0000</pubDate>
		<dc:creator>ntcnet</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://ntcnet.wordpress.com/2008/01/18/url-mapping-in-aspnet-20/</guid>
		<description><![CDATA[URL Mapping is a mechanism by which you can change the displayed url in address bar.
Example:
Your asp.net application is developed from years, with convention frm as prefix to webform.




Now to change already assigned name to legacy system which is maintained for past few years and to avoid risk we can make use of URL Mapping.
For [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ntcnet.wordpress.com&blog=2189552&post=26&subd=ntcnet&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ntcnet.wordpress.com/2008/01/18/url-mapping-in-aspnet-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/95899cfe283a6aae3682ffb0ba3a00b4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ntcnet</media:title>
		</media:content>

		<media:content url="http://bp1.blogger.com/_nuQwSyDoLk8/R40kbVMVnOI/AAAAAAAAAZ8/-rcZ32dmg4c/s400/solution+explorer.JPG" medium="image" />

		<media:content url="http://bp0.blogger.com/_nuQwSyDoLk8/R40m8FMVnPI/AAAAAAAAAaE/Q4Ys7zwtG58/s400/web+page1.JPG" medium="image" />

		<media:content url="http://bp0.blogger.com/_nuQwSyDoLk8/R40nOFMVnQI/AAAAAAAAAaM/l0TvcwA0png/s400/web+page2.JPG" medium="image" />
	</item>
		<item>
		<title>Sending Emails with Dynamic Content</title>
		<link>http://ntcnet.wordpress.com/2007/12/20/sending-emails-with-dynamic-content/</link>
		<comments>http://ntcnet.wordpress.com/2007/12/20/sending-emails-with-dynamic-content/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 09:11:22 +0000</pubDate>
		<dc:creator>ntcnet</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://ntcnet.wordpress.com/2007/12/20/sending-emails-with-dynamic-content/</guid>
		<description><![CDATA[ Introduction
This article explains how to send email from asp.net with dynamic contents.
Description
There are lots and lots of requirements come in our day to day life of web application development. One thing which we do most is sending notification emails to users of our website. In case, if your website is an e-commerce system, then [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ntcnet.wordpress.com&blog=2189552&post=18&subd=ntcnet&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ntcnet.wordpress.com/2007/12/20/sending-emails-with-dynamic-content/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/95899cfe283a6aae3682ffb0ba3a00b4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ntcnet</media:title>
		</media:content>
	</item>
	</channel>
</rss>