<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for ASP.NET - Code Snippets and Tutorials</title>
	<atom:link href="http://www.aspneter.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aspneter.com</link>
	<description>Free ASP.NET Code Snippets, Source Code, Articles, Examples, Tutorials and Programming Help</description>
	<lastBuildDate>Fri, 02 Mar 2012 06:12:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Conversion from Currency into English Words by Deepak Anmol</title>
		<link>http://www.aspneter.com/2011/01/conversion-from-currency-into-english-words/comment-page-1/#comment-1382</link>
		<dc:creator>Deepak Anmol</dc:creator>
		<pubDate>Fri, 02 Mar 2012 06:12:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspneter.com/?p=560#comment-1382</guid>
		<description>In C# the following code is done
=================
static void Main(string[] args)
        {
           Decimal amount = Decimal.Parse(&quot;1293977028.45&quot;);
           Console.Write(Dollars(Math.Floor(amount)) + Cents(amount));
           Console.ReadKey();
        }

        private static string Dollars(Decimal amount, Boolean EmptyStringIfZero = true)
        {
            string result = String.Empty;
            if (amount == 0)
            {
                result = EmptyStringIfZero ? String.Empty : &quot;Zero &quot;;
            }
            else if (amount &gt;= 1 &amp;&amp; amount = 20 &amp;&amp; amount = 100 &amp;&amp; amount = 200 ? &quot;s &quot; : &quot; &quot;) + Dollars(amount % 100);

            }
            else if (amount &gt;= 1000 &amp;&amp; amount = 2000 ? &quot;s &quot; : &quot; &quot;) + Dollars(amount % 1000);
            }
            else if (amount &gt;= 1000000 &amp;&amp; amount = 2000000 ? &quot;s &quot; : &quot; &quot;) + Dollars(amount % 1000000);
            }
            else if (amount &gt;= 1000000000)
            {
                result = Dollars(Math.Floor(amount / 1000000000)) + &quot;Billion&quot; + (amount &gt;= 2000000000 ? &quot;s&quot; : &quot; &quot;) + Dollars(amount % 1000000000);
            }

            return result;
        }
        private static string Choose(decimal amount,Hashtable htblTemp)
        {
            return (string)htblTemp[int.Parse(amount.ToString())];
        }

        public static string Cents(Decimal amount)
        {
            string result = amount.ToString();

            if (result.Contains(&quot;.&quot;))
            {
                result = result.Substring(result.IndexOf(&quot;.&quot;) + 1);
            }
            else
            {
                result = &quot;00&quot;;
            }
            return &quot; and &quot; + result + &quot;/100&quot;;
        }</description>
		<content:encoded><![CDATA[<p>In C# the following code is done<br />
=================<br />
static void Main(string[] args)<br />
        {<br />
           Decimal amount = Decimal.Parse(&#8220;1293977028.45&#8243;);<br />
           Console.Write(Dollars(Math.Floor(amount)) + Cents(amount));<br />
           Console.ReadKey();<br />
        }</p>
<p>        private static string Dollars(Decimal amount, Boolean EmptyStringIfZero = true)<br />
        {<br />
            string result = String.Empty;<br />
            if (amount == 0)<br />
            {<br />
                result = EmptyStringIfZero ? String.Empty : &#8220;Zero &#8220;;<br />
            }<br />
            else if (amount &gt;= 1 &amp;&amp; amount = 20 &amp;&amp; amount = 100 &amp;&amp; amount = 200 ? &#8220;s &#8221; : &#8221; &#8220;) + Dollars(amount % 100);</p>
<p>            }<br />
            else if (amount &gt;= 1000 &amp;&amp; amount = 2000 ? &#8220;s &#8221; : &#8221; &#8220;) + Dollars(amount % 1000);<br />
            }<br />
            else if (amount &gt;= 1000000 &amp;&amp; amount = 2000000 ? &#8220;s &#8221; : &#8221; &#8220;) + Dollars(amount % 1000000);<br />
            }<br />
            else if (amount &gt;= 1000000000)<br />
            {<br />
                result = Dollars(Math.Floor(amount / 1000000000)) + &#8220;Billion&#8221; + (amount &gt;= 2000000000 ? &#8220;s&#8221; : &#8221; &#8220;) + Dollars(amount % 1000000000);<br />
            }</p>
<p>            return result;<br />
        }<br />
        private static string Choose(decimal amount,Hashtable htblTemp)<br />
        {<br />
            return (string)htblTemp[int.Parse(amount.ToString())];<br />
        }</p>
<p>        public static string Cents(Decimal amount)<br />
        {<br />
            string result = amount.ToString();</p>
<p>            if (result.Contains(&#8220;.&#8221;))<br />
            {<br />
                result = result.Substring(result.IndexOf(&#8220;.&#8221;) + 1);<br />
            }<br />
            else<br />
            {<br />
                result = &#8220;00&#8243;;<br />
            }<br />
            return &#8221; and &#8221; + result + &#8220;/100&#8243;;<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Things I hate about VB.NET by Alan J</title>
		<link>http://www.aspneter.com/2009/07/things-i-hate-about-vb-net/comment-page-1/#comment-1378</link>
		<dc:creator>Alan J</dc:creator>
		<pubDate>Mon, 19 Dec 2011 21:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspneter.com/?p=420#comment-1378</guid>
		<description>It is very easy to use the toolbar.  One click and done.  I don&#039;t like block comments because you can&#039;t nest then in html for example.</description>
		<content:encoded><![CDATA[<p>It is very easy to use the toolbar.  One click and done.  I don&#8217;t like block comments because you can&#8217;t nest then in html for example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sending Mass/Bulk E-mail Using ASP.NET by srikanth</title>
		<link>http://www.aspneter.com/2009/05/sending-massbulk-e-mail-using-aspnet/comment-page-1/#comment-1377</link>
		<dc:creator>srikanth</dc:creator>
		<pubDate>Sat, 03 Dec 2011 02:32:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspneter.com/?p=90#comment-1377</guid>
		<description>sir, please send the code in c#.net</description>
		<content:encoded><![CDATA[<p>sir, please send the code in c#.net</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugins &#8211; Connect time issue by hcd</title>
		<link>http://www.aspneter.com/2009/06/wordpress-plugins-slow-down-your-blog/comment-page-1/#comment-1371</link>
		<dc:creator>hcd</dc:creator>
		<pubDate>Fri, 11 Nov 2011 21:25:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspneter.com/?p=229#comment-1371</guid>
		<description>Thanks, actually helpful with a simple troubleshooting issue I had. One plugin was responsible, easy fix.</description>
		<content:encoded><![CDATA[<p>Thanks, actually helpful with a simple troubleshooting issue I had. One plugin was responsible, easy fix.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Change Visual Studio 2010 Development Server (Cassini) Port Number by Blue Ray Plus - Latest Technology News</title>
		<link>http://www.aspneter.com/2011/07/change-visual-studio-2010-development-server-cassini-port-number/comment-page-1/#comment-1365</link>
		<dc:creator>Blue Ray Plus - Latest Technology News</dc:creator>
		<pubDate>Fri, 07 Oct 2011 04:52:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspneter.com/?p=628#comment-1365</guid>
		<description>&lt;strong&gt;Change Visual Studio 2010 Development Server (Cassini) Port Number « ASP.NET – Code Snippets and Tutorials...&lt;/strong&gt;

Thank you for submitting this cool story - Trackback from Blue Ray Plus - Latest Technology News...</description>
		<content:encoded><![CDATA[<p><strong>Change Visual Studio 2010 Development Server (Cassini) Port Number « ASP.NET – Code Snippets and Tutorials&#8230;</strong></p>
<p>Thank you for submitting this cool story &#8211; Trackback from Blue Ray Plus &#8211; Latest Technology News&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Parse Craigslist RSS &amp; RDF Feeds Using VB.NET by Brandon</title>
		<link>http://www.aspneter.com/2009/05/how-to-parse-craigslist-rss-rdf-feeds-using-aspnet/comment-page-1/#comment-1357</link>
		<dc:creator>Brandon</dc:creator>
		<pubDate>Tue, 20 Sep 2011 15:50:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspneter.com/?p=139#comment-1357</guid>
		<description>Works great...  I used it to parse and log craigslist ads.  My custom app searches for key words and emails me relevant ads; using your parser.  Thanks</description>
		<content:encoded><![CDATA[<p>Works great&#8230;  I used it to parse and log craigslist ads.  My custom app searches for key words and emails me relevant ads; using your parser.  Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GoDaddy Promo Codes List (Working One) by Anthony</title>
		<link>http://www.aspneter.com/2010/06/godaddy-promo-codes-list-working-one/comment-page-1/#comment-1354</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Thu, 15 Sep 2011 00:02:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspneter.com/?p=276#comment-1354</guid>
		<description>Here are some more godaddy promo codes i personally use , 
cjc749chp 7.49$ .Com domain registration , this promo code gives you best rating for .Com
cjcchp10 Save 10% off your order
cjcchp20 Save 20% off hosting
cjcchp30 Save 5$ off your order 30$ or more
cjcchp50 Save 10$ off your order 50$ or more
cjcchp75 Save 15% off your order 75$ or more</description>
		<content:encoded><![CDATA[<p>Here are some more godaddy promo codes i personally use ,<br />
cjc749chp 7.49$ .Com domain registration , this promo code gives you best rating for .Com<br />
cjcchp10 Save 10% off your order<br />
cjcchp20 Save 20% off hosting<br />
cjcchp30 Save 5$ off your order 30$ or more<br />
cjcchp50 Save 10$ off your order 50$ or more<br />
cjcchp75 Save 15% off your order 75$ or more</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Change Visual Studio 2010 Development Server (Cassini) Port Number by Pink hand</title>
		<link>http://www.aspneter.com/2011/07/change-visual-studio-2010-development-server-cassini-port-number/comment-page-1/#comment-1276</link>
		<dc:creator>Pink hand</dc:creator>
		<pubDate>Mon, 18 Jul 2011 05:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspneter.com/?p=628#comment-1276</guid>
		<description>Thanks  for interesting post.</description>
		<content:encoded><![CDATA[<p>Thanks  for interesting post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Make an Application Run at Windows Startup (boot-up) by Zeeshan Umar</title>
		<link>http://www.aspneter.com/2009/06/make-an-application-run-at-windows-startup-boot-up/comment-page-1/#comment-1238</link>
		<dc:creator>Zeeshan Umar</dc:creator>
		<pubDate>Sat, 09 Jul 2011 10:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspneter.com/?p=266#comment-1238</guid>
		<description>Nice example. Also I think that instead of CurrentUser in registry you better use CurrentMachine so it get executed for every users what you say?</description>
		<content:encoded><![CDATA[<p>Nice example. Also I think that instead of CurrentUser in registry you better use CurrentMachine so it get executed for every users what you say?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sending Mass/Bulk E-mail Using ASP.NET by peter</title>
		<link>http://www.aspneter.com/2009/05/sending-massbulk-e-mail-using-aspnet/comment-page-1/#comment-1137</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Tue, 07 Jun 2011 11:44:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspneter.com/?p=90#comment-1137</guid>
		<description>please will you send me the code in csharp pls</description>
		<content:encoded><![CDATA[<p>please will you send me the code in csharp pls</p>
]]></content:encoded>
	</item>
</channel>
</rss>

