<?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 ITtecture</title>
	<atom:link href="http://ittecture.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://ittecture.wordpress.com</link>
	<description>Software architecture, performance and programming cool stuff</description>
	<lastBuildDate>Mon, 19 Oct 2009 23:06:38 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Tip of the day #200 &#8211; ASP.NET MVC &#8211; Defining html attributes for Html Helpers by Dan</title>
		<link>http://ittecture.wordpress.com/2009/05/02/tip-of-the-day-200-asp-net-mvc-defining-html-attributes-for-html-helpers/#comment-285</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 19 Oct 2009 23:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://ittecture.wordpress.com/?p=2216#comment-285</guid>
		<description>Thanks this was simple and helpful.</description>
		<content:encoded><![CDATA[<p>Thanks this was simple and helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tip of the day #208 &#8211; ASP.NET MVC &#8211; Populating dropdownlists using LINQ to SQL by Roger Maynard</title>
		<link>http://ittecture.wordpress.com/2009/05/10/tip-of-the-day-208-asp-net-mvc-populating-dropdownlists-using-linq-to-sql/#comment-280</link>
		<dc:creator>Roger Maynard</dc:creator>
		<pubDate>Fri, 09 Oct 2009 22:20:40 +0000</pubDate>
		<guid isPermaLink="false">http://ittecture.wordpress.com/?p=2293#comment-280</guid>
		<description>Cirilo - have you any suggestion about how to show the selected item from the list in the case where this view is an Edit view?</description>
		<content:encoded><![CDATA[<p>Cirilo &#8211; have you any suggestion about how to show the selected item from the list in the case where this view is an Edit view?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tip of the day #201 &#8211; ASP.NET MVC &#8211; RadioButton controls by Roger Maynard</title>
		<link>http://ittecture.wordpress.com/2009/05/03/tip-of-the-day-201-asp-net-mvc-radiobutton-controls/#comment-279</link>
		<dc:creator>Roger Maynard</dc:creator>
		<pubDate>Fri, 09 Oct 2009 22:13:10 +0000</pubDate>
		<guid isPermaLink="false">http://ittecture.wordpress.com/?p=2223#comment-279</guid>
		<description>Cirilo - this is very helpful. 

I need also to trigger the POST when the radiobutton state is changed?

Is there any way to do so</description>
		<content:encoded><![CDATA[<p>Cirilo &#8211; this is very helpful. </p>
<p>I need also to trigger the POST when the radiobutton state is changed?</p>
<p>Is there any way to do so</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tip of the day #126 – Querying stored procedures with ADO.NET Entity Framework by papuccino1</title>
		<link>http://ittecture.wordpress.com/2009/02/17/tip-of-the-day-126/#comment-272</link>
		<dc:creator>papuccino1</dc:creator>
		<pubDate>Wed, 30 Sep 2009 17:08:19 +0000</pubDate>
		<guid isPermaLink="false">http://ittecture.wordpress.com/?p=1475#comment-272</guid>
		<description>Nice tutorial. Easy to follow.</description>
		<content:encoded><![CDATA[<p>Nice tutorial. Easy to follow.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tip of the day #208 &#8211; ASP.NET MVC &#8211; Populating dropdownlists using LINQ to SQL by msony</title>
		<link>http://ittecture.wordpress.com/2009/05/10/tip-of-the-day-208-asp-net-mvc-populating-dropdownlists-using-linq-to-sql/#comment-258</link>
		<dc:creator>msony</dc:creator>
		<pubDate>Thu, 17 Sep 2009 07:29:36 +0000</pubDate>
		<guid isPermaLink="false">http://ittecture.wordpress.com/?p=2293#comment-258</guid>
		<description>i think that in controller u must user SelectList object and then put it in ViewDate like: 

ViewData[&quot;ProductList&quot;] = new SelectList(products, &quot;ID&quot;, &quot;Name&quot;);

and in your view simple user of dropdown like: 



the main idea that u will not use any logic in your views</description>
		<content:encoded><![CDATA[<p>i think that in controller u must user SelectList object and then put it in ViewDate like: </p>
<p>ViewData["ProductList"] = new SelectList(products, &#8220;ID&#8221;, &#8220;Name&#8221;);</p>
<p>and in your view simple user of dropdown like: </p>
<p>the main idea that u will not use any logic in your views</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tip of the day #211 &#8211; .NET Framework 4.0 &#8211; Your first parallel loop by Raghu</title>
		<link>http://ittecture.wordpress.com/2009/05/13/tip-of-the-day-211-net-framework-4-0-your-first-parallel-loop/#comment-250</link>
		<dc:creator>Raghu</dc:creator>
		<pubDate>Sun, 30 Aug 2009 13:37:16 +0000</pubDate>
		<guid isPermaLink="false">http://ittecture.wordpress.com/?p=2308#comment-250</guid>
		<description>Interesting feature. 

I suppose there got to be multiple threads processing this (since they are on different processors) am I right?

If so, what is the idea on how could we achieve better performance as we need to lock the variable at the time of updating it.

Any clarification of how this Parallel will impact threading issues will be very helpful.</description>
		<content:encoded><![CDATA[<p>Interesting feature. </p>
<p>I suppose there got to be multiple threads processing this (since they are on different processors) am I right?</p>
<p>If so, what is the idea on how could we achieve better performance as we need to lock the variable at the time of updating it.</p>
<p>Any clarification of how this Parallel will impact threading issues will be very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tip of the day #180 &#8211; ASP.NET MVC &#8211; Routing by Hema</title>
		<link>http://ittecture.wordpress.com/2009/04/12/tip-of-the-day-180-aspnet-mvc-routing/#comment-248</link>
		<dc:creator>Hema</dc:creator>
		<pubDate>Mon, 17 Aug 2009 18:02:54 +0000</pubDate>
		<guid isPermaLink="false">http://ittecture.wordpress.com/?p=1954#comment-248</guid>
		<description>Really your Tips for MVP are very much helpful and easy to undestand, KIndly keep posted on this as this will really help to the developers such as me who will get such a nice blog after so much googling on MVC.</description>
		<content:encoded><![CDATA[<p>Really your Tips for MVP are very much helpful and easy to undestand, KIndly keep posted on this as this will really help to the developers such as me who will get such a nice blog after so much googling on MVC.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tip of the day #199 &#8211; ASP.NET MVC &#8211; Defining model-binding explicitly by Graham O&#39;Neale</title>
		<link>http://ittecture.wordpress.com/2009/05/01/tip-of-the-day-199-asp-net-mvc-defining-model-binding-explicitly/#comment-245</link>
		<dc:creator>Graham O&#39;Neale</dc:creator>
		<pubDate>Thu, 30 Jul 2009 04:17:24 +0000</pubDate>
		<guid isPermaLink="false">http://ittecture.wordpress.com/?p=2205#comment-245</guid>
		<description>Hi Cirilo,

Have you actually seen includeProperties actually working? I am trying it at the moment, and still, all properties are being bound, even ones that don&#039;t exist on the form - and they are being bound to null, including my lists and creation date/time&#039;s etc, which is not good, hence why I wish to use includeProperties.

Any thoughts?</description>
		<content:encoded><![CDATA[<p>Hi Cirilo,</p>
<p>Have you actually seen includeProperties actually working? I am trying it at the moment, and still, all properties are being bound, even ones that don&#8217;t exist on the form &#8211; and they are being bound to null, including my lists and creation date/time&#8217;s etc, which is not good, hence why I wish to use includeProperties.</p>
<p>Any thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tip of the day #198 &#8211; ASP.NET MVC &#8211; ListBox controls by raj</title>
		<link>http://ittecture.wordpress.com/2009/04/30/tip-of-the-day-198-asp-net-mvc-listbox-controls/#comment-241</link>
		<dc:creator>raj</dc:creator>
		<pubDate>Wed, 15 Jul 2009 05:25:01 +0000</pubDate>
		<guid isPermaLink="false">http://ittecture.wordpress.com/?p=2191#comment-241</guid>
		<description>Thanks for the article. Can you tell me how to update  the list box changes (which i have done thru javascript) to database while clicking submit button</description>
		<content:encoded><![CDATA[<p>Thanks for the article. Can you tell me how to update  the list box changes (which i have done thru javascript) to database while clicking submit button</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tip of the day #198 &#8211; ASP.NET MVC &#8211; ListBox controls by trendbender</title>
		<link>http://ittecture.wordpress.com/2009/04/30/tip-of-the-day-198-asp-net-mvc-listbox-controls/#comment-231</link>
		<dc:creator>trendbender</dc:creator>
		<pubDate>Tue, 16 Jun 2009 16:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://ittecture.wordpress.com/?p=2191#comment-231</guid>
		<description>thx for article</description>
		<content:encoded><![CDATA[<p>thx for article</p>
]]></content:encoded>
	</item>
</channel>
</rss>
