<?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 on: View a Generic List with ASP.NET MVC. Step by Step With Preview 5</title>
	<atom:link href="http://peterkellner.net/2008/09/09/mvc-tutorial-simple-generic-list-preview5/feed/" rel="self" type="application/rss+xml" />
	<link>http://peterkellner.net/2008/09/09/mvc-tutorial-simple-generic-list-preview5/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mvc-tutorial-simple-generic-list-preview5</link>
	<description>Microsoft Focused, JavaScript,HTML5 (ExtJS, SenchaTouch &#38; Windows 8 Metro)</description>
	<lastBuildDate>Tue, 15 May 2012 21:53:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Jack</title>
		<link>http://peterkellner.net/2008/09/09/mvc-tutorial-simple-generic-list-preview5/#comment-35828</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Sat, 14 Apr 2012 09:55:25 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2008/09/09/mvc-tutorial-simple-generic-list-preview5/#comment-35828</guid>
		<description>ViewData.Model is objecet,objecet is not GetEnumerator.
foreach (var emailItem in ViewData.Model)????</description>
		<content:encoded><![CDATA[<p>ViewData.Model is objecet,objecet is not GetEnumerator.<br />
foreach (var emailItem in ViewData.Model)????</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brandy</title>
		<link>http://peterkellner.net/2008/09/09/mvc-tutorial-simple-generic-list-preview5/#comment-29546</link>
		<dc:creator>brandy</dc:creator>
		<pubDate>Mon, 28 Feb 2011 10:40:54 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2008/09/09/mvc-tutorial-simple-generic-list-preview5/#comment-29546</guid>
		<description>We recognize you this article, It had been an amazing study which was extremely useful.</description>
		<content:encoded><![CDATA[<p>We recognize you this article, It had been an amazing study which was extremely useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Kellner</title>
		<link>http://peterkellner.net/2008/09/09/mvc-tutorial-simple-generic-list-preview5/#comment-25734</link>
		<dc:creator>Peter Kellner</dc:creator>
		<pubDate>Thu, 26 Nov 2009 14:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2008/09/09/mvc-tutorial-simple-generic-list-preview5/#comment-25734</guid>
		<description>Hi Mike,

I have not done MVC since preview 5 so I&#039;m sure the problem is related to changes in the Microsoft release of mvc.  Likely, they dropped GetEnumerator and replaced it with something else.

I&#039;d suggest posting on forums.asp.net and I&#039;m confident someone will be able to help you (and maybe even post the solution to these comments).

Good Luck, -Peter</description>
		<content:encoded><![CDATA[<p>Hi Mike,</p>
<p>I have not done MVC since preview 5 so I&#8217;m sure the problem is related to changes in the Microsoft release of mvc.  Likely, they dropped GetEnumerator and replaced it with something else.</p>
<p>I&#8217;d suggest posting on forums.asp.net and I&#8217;m confident someone will be able to help you (and maybe even post the solution to these comments).</p>
<p>Good Luck, -Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://peterkellner.net/2008/09/09/mvc-tutorial-simple-generic-list-preview5/#comment-25733</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 26 Nov 2009 12:52:21 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2008/09/09/mvc-tutorial-simple-generic-list-preview5/#comment-25733</guid>
		<description>Another thing:Inside your project,that you&#039;ve attached to this article,there is a folder,called &quot;Views&quot;,but it is empty and doesn&#039;t contain any Index.aspx file. It would be nice,if you could fix this solution or tell us how to fix it.
Regards,Mike.</description>
		<content:encoded><![CDATA[<p>Another thing:Inside your project,that you&#8217;ve attached to this article,there is a folder,called &#8220;Views&#8221;,but it is empty and doesn&#8217;t contain any Index.aspx file. It would be nice,if you could fix this solution or tell us how to fix it.<br />
Regards,Mike.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://peterkellner.net/2008/09/09/mvc-tutorial-simple-generic-list-preview5/#comment-25732</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 26 Nov 2009 12:40:59 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2008/09/09/mvc-tutorial-simple-generic-list-preview5/#comment-25732</guid>
		<description>Hi there,
There is some problem with your tutorial,when I add MVC View Content Page,this aspx page is created whithout its cs file(Index.aspx.cs is missing),so I don&#039;t know where to add public partial class Index :
        ViewPage&lt;IEnumerable&gt;
    {
    }
As a result,I have &quot;Server error&quot; when I click on Email List link. It says &quot;foreach statement cannot operate on variables of type &#039;object&#039; because &#039;object&#039; does not contain a public definition for &#039;GetEnumerator&#039; &quot;
I&#039;ve download  template &quot;ASP.NET MVC Web Application&quot; from http://www.asp.net/mvc/download/.
Why it is wrong? Can you fix it?</description>
		<content:encoded><![CDATA[<p>Hi there,<br />
There is some problem with your tutorial,when I add MVC View Content Page,this aspx page is created whithout its cs file(Index.aspx.cs is missing),so I don&#8217;t know where to add public partial class Index :<br />
        ViewPage&lt;IEnumerable&gt;<br />
    {<br />
    }<br />
As a result,I have &#8220;Server error&#8221; when I click on Email List link. It says &#8220;foreach statement cannot operate on variables of type &#8216;object&#8217; because &#8216;object&#8217; does not contain a public definition for &#8216;GetEnumerator&#8217; &#8221;<br />
I&#8217;ve download  template &#8220;ASP.NET MVC Web Application&#8221; from <a href="http://www.asp.net/mvc/download/">http://www.asp.net/mvc/download/</a>.<br />
Why it is wrong? Can you fix it?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 36/38 queries in 0.005 seconds using disk: basic
Content Delivery Network via Amazon Web Services: S3: PetersBlogCDN.s3.amazonaws.com

Served from: peterkellner.net @ 2012-05-21 10:04:04 -->
