<?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/"
	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>Comments for dotnetting</title>
	<atom:link href="http://dotnetting.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://dotnetting.wordpress.com</link>
	<description>.NET tips, tricks, discussion</description>
	<lastBuildDate>Mon, 06 Apr 2009 03:58:07 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Missing MSXML6 prerequisite is found by Najib Hassan</title>
		<link>http://dotnetting.wordpress.com/2007/01/17/missing-msxml6-prerequisite-is-found-alive/#comment-524</link>
		<dc:creator>Najib Hassan</dc:creator>
		<pubDate>Mon, 06 Apr 2009 03:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetting.wordpress.com/2007/01/17/missing-msxml6-prerequisite-is-found-alivenkicking/#comment-524</guid>
		<description>To fix the problem  ,

    * Go to control panel&gt;add/remove programs
    * and select msxml
    * click on change
    * It will give an option to repair the installation , select that.
    * This should fix the registry with the correct keys and you can now proceed installing SQL server management studio.

work for XP SP1, SP2, and SP3</description>
		<content:encoded><![CDATA[<p>To fix the problem  ,</p>
<p>    * Go to control panel&gt;add/remove programs<br />
    * and select msxml<br />
    * click on change<br />
    * It will give an option to repair the installation , select that.<br />
    * This should fix the registry with the correct keys and you can now proceed installing SQL server management studio.</p>
<p>work for XP SP1, SP2, and SP3</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to format a date in a web control by dev</title>
		<link>http://dotnetting.wordpress.com/2007/02/22/how-to-format-a-date-in-a-web-control/#comment-523</link>
		<dc:creator>dev</dc:creator>
		<pubDate>Fri, 19 Sep 2008 10:42:22 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetting.wordpress.com/2007/02/22/how-to-format-a-date-in-a-web-control/#comment-523</guid>
		<description>Excellent</description>
		<content:encoded><![CDATA[<p>Excellent</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Find Controls in Controls recursively using Generics by Yordan Georgiev</title>
		<link>http://dotnetting.wordpress.com/2007/03/24/find-controls-in-controls-recursively-using-generics/#comment-518</link>
		<dc:creator>Yordan Georgiev</dc:creator>
		<pubDate>Thu, 27 Mar 2008 14:22:45 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetting.wordpress.com/2007/03/24/find-controls-in-controls-recursively-using-generics/#comment-518</guid>
		<description>public static Control FindControlRecursive (ref Control root, ref string id )
{
    if (root.ID == id)
        {
        return root;
        }

    foreach (Control c in root.Controls)
        {
        Control a = c;
        Control t = FindControlRecursive ( ref a, ref id );
        if (t != null)
            {
            return t;
            }
        }

    return null;
} //eof FindControlRecursive</description>
		<content:encoded><![CDATA[<p>public static Control FindControlRecursive (ref Control root, ref string id )<br />
{<br />
    if (root.ID == id)<br />
        {<br />
        return root;<br />
        }</p>
<p>    foreach (Control c in root.Controls)<br />
        {<br />
        Control a = c;<br />
        Control t = FindControlRecursive ( ref a, ref id );<br />
        if (t != null)<br />
            {<br />
            return t;<br />
            }<br />
        }</p>
<p>    return null;<br />
} //eof FindControlRecursive</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Missing MSXML6 prerequisite is found by Nelsen Lim</title>
		<link>http://dotnetting.wordpress.com/2007/01/17/missing-msxml6-prerequisite-is-found-alive/#comment-515</link>
		<dc:creator>Nelsen Lim</dc:creator>
		<pubDate>Mon, 03 Mar 2008 03:50:16 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetting.wordpress.com/2007/01/17/missing-msxml6-prerequisite-is-found-alivenkicking/#comment-515</guid>
		<description>Hi prob this link will help u.
http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=727527&amp;SiteID=17</description>
		<content:encoded><![CDATA[<p>Hi prob this link will help u.<br />
<a href="http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=727527&amp;SiteID=17" rel="nofollow">http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=727527&amp;SiteID=17</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Missing MSXML6 prerequisite is found by Greyhound</title>
		<link>http://dotnetting.wordpress.com/2007/01/17/missing-msxml6-prerequisite-is-found-alive/#comment-514</link>
		<dc:creator>Greyhound</dc:creator>
		<pubDate>Wed, 13 Feb 2008 23:29:24 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetting.wordpress.com/2007/01/17/missing-msxml6-prerequisite-is-found-alivenkicking/#comment-514</guid>
		<description>it just doesn&#039;t work for me... I&#039;ve tried uninstalling and re-installing msxml dozens of times and it still gives me the same error message</description>
		<content:encoded><![CDATA[<p>it just doesn&#8217;t work for me&#8230; I&#8217;ve tried uninstalling and re-installing msxml dozens of times and it still gives me the same error message</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bloated JavaScript in ASP.NET Validation Controls by Mike</title>
		<link>http://dotnetting.wordpress.com/2007/01/30/bloated-javascript-in-aspnet-validation-controls/#comment-297</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 18 Sep 2007 14:41:33 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetting.wordpress.com/2007/01/30/bloated-javascript-in-aspnet-validation-controls/#comment-297</guid>
		<description>That&#039;s the price you pay for using a framework. It&#039;s not as if 24K is a burden for most people these days.  A one off download to the client means you, as the developer, spend less time reinventing the wheel and more time getting on with stuff that matters, eg. application logic.

It&#039;s true that 24K of code seems a lot for a very simple form, but complex forms will need the same code too, and it will cached. Because of latency on the web, it&#039;s probably faster to download one larger file than multiple small ones anyway. 

The alternative to using pre-built validation controls is, as you suggest, to wite your own.  To make them as robust or as fully featured as a professional while leaving a smaller footprint is a project in of itself.  Your clients must REALLY need this 24K of bandwidth to make it worth it.

Be lazy. Let your website be 10% slower for the sake of gaining all that you do with a well designed client side framework.

BTW, I&#039;ve never used the Microsoft validators.  Because of how badly they sucked in ASP.NET 1, I&#039;ve always used Peter Blum&#039;s.</description>
		<content:encoded><![CDATA[<p>That&#8217;s the price you pay for using a framework. It&#8217;s not as if 24K is a burden for most people these days.  A one off download to the client means you, as the developer, spend less time reinventing the wheel and more time getting on with stuff that matters, eg. application logic.</p>
<p>It&#8217;s true that 24K of code seems a lot for a very simple form, but complex forms will need the same code too, and it will cached. Because of latency on the web, it&#8217;s probably faster to download one larger file than multiple small ones anyway. </p>
<p>The alternative to using pre-built validation controls is, as you suggest, to wite your own.  To make them as robust or as fully featured as a professional while leaving a smaller footprint is a project in of itself.  Your clients must REALLY need this 24K of bandwidth to make it worth it.</p>
<p>Be lazy. Let your website be 10% slower for the sake of gaining all that you do with a well designed client side framework.</p>
<p>BTW, I&#8217;ve never used the Microsoft validators.  Because of how badly they sucked in ASP.NET 1, I&#8217;ve always used Peter Blum&#8217;s.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET&#8217;s attempt at valid XHTML by Seree</title>
		<link>http://dotnetting.wordpress.com/2007/01/30/aspnets-attempt-at-valid-xhtml/#comment-177</link>
		<dc:creator>Seree</dc:creator>
		<pubDate>Sat, 04 Aug 2007 15:03:56 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetting.wordpress.com/2007/01/30/aspnets-attempt-at-valid-xhtml/#comment-177</guid>
		<description>I don&#039;t sure but this can be useful for you.

http://www.asp.net/cssadapters/</description>
		<content:encoded><![CDATA[<p>I don&#8217;t sure but this can be useful for you.</p>
<p><a href="http://www.asp.net/cssadapters/" rel="nofollow">http://www.asp.net/cssadapters/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Find Controls in Controls recursively using Generics by Seree</title>
		<link>http://dotnetting.wordpress.com/2007/03/24/find-controls-in-controls-recursively-using-generics/#comment-176</link>
		<dc:creator>Seree</dc:creator>
		<pubDate>Sat, 04 Aug 2007 14:55:52 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetting.wordpress.com/2007/03/24/find-controls-in-controls-recursively-using-generics/#comment-176</guid>
		<description>I never see this! Really helpful.</description>
		<content:encoded><![CDATA[<p>I never see this! Really helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introducing ASP.NET Server Controls by Seree</title>
		<link>http://dotnetting.wordpress.com/2007/01/30/introducing-aspnet-server-controls/#comment-175</link>
		<dc:creator>Seree</dc:creator>
		<pubDate>Sat, 04 Aug 2007 14:47:54 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetting.wordpress.com/2007/01/30/introducing-aspnet-server-controls/#comment-175</guid>
		<description>You may include the overview of Microsoft ASP.NET Ajax Control toolkit too. It gonna increase the topic&#039;s value.</description>
		<content:encoded><![CDATA[<p>You may include the overview of Microsoft ASP.NET Ajax Control toolkit too. It gonna increase the topic&#8217;s value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to format a date in a web control by Seree</title>
		<link>http://dotnetting.wordpress.com/2007/02/22/how-to-format-a-date-in-a-web-control/#comment-174</link>
		<dc:creator>Seree</dc:creator>
		<pubDate>Sat, 04 Aug 2007 14:40:22 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetting.wordpress.com/2007/02/22/how-to-format-a-date-in-a-web-control/#comment-174</guid>
		<description>Hey, thanks you!</description>
		<content:encoded><![CDATA[<p>Hey, thanks you!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
