<?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 MyVerbalOutlet</title>
	<atom:link href="http://www.myverbaloutlet.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.myverbaloutlet.net</link>
	<description>This is where I spout off about stuff</description>
	<lastBuildDate>Wed, 04 Feb 2009 17:07:28 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Don&#8217;t Mess With Thought Leaders by How to Handel a Customer Service Issue</title>
		<link>http://www.myverbaloutlet.net/2009/02/dont-mess-with-thought-leaders/comment-page-1/#comment-61</link>
		<dc:creator>How to Handel a Customer Service Issue</dc:creator>
		<pubDate>Wed, 04 Feb 2009 17:07:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.myverbaloutlet.net/2009/02/dont-mess-with-thought-leaders/#comment-61</guid>
		<description>[...] previously posted comments on a story I read about software developer Ayende’s&#160; poor customer service [...]</description>
		<content:encoded><![CDATA[<p>[...] previously posted comments on a story I read about software developer Ayende’s&nbsp; poor customer service [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Legend of the Seeker by Steve</title>
		<link>http://www.myverbaloutlet.net/2008/12/legend-of-the-seeker/comment-page-1/#comment-60</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 21 Jan 2009 17:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.myverbaloutlet.net/?p=56#comment-60</guid>
		<description>Just thought Id send ya a comment for some reson. I am a big fan of The Sword of Truth series myself. I did allow myself to watch the episodes and was disappointed to how Iwas hoping to expect the show to be more like the book series. Guess I was such a fan of the series though I expanded my mind  a little then I thought I could to try to enjoy the expierience of my favorite series to be lived on . I was also very surprised that Terry Goodkind allowed it. Some of the acting is bad and it is like watching Hercules or Xena like you stated...But I used to watch those also lmao.If you are a fan of just the book series try watching one episode.Go on the Legend of the Seeker.com and watch the episode 8 (Denna). I believe that episode actually captured a little from the book. Sent me a couple of chills. Thought I&#039;d let ya know. Send me an email back if ya watch and like the episode or if ya think Im a nutjob lol.</description>
		<content:encoded><![CDATA[<p>Just thought Id send ya a comment for some reson. I am a big fan of The Sword of Truth series myself. I did allow myself to watch the episodes and was disappointed to how Iwas hoping to expect the show to be more like the book series. Guess I was such a fan of the series though I expanded my mind  a little then I thought I could to try to enjoy the expierience of my favorite series to be lived on . I was also very surprised that Terry Goodkind allowed it. Some of the acting is bad and it is like watching Hercules or Xena like you stated&#8230;But I used to watch those also lmao.If you are a fan of just the book series try watching one episode.Go on the Legend of the Seeker.com and watch the episode 8 (Denna). I believe that episode actually captured a little from the book. Sent me a couple of chills. Thought I&#8217;d let ya know. Send me an email back if ya watch and like the episode or if ya think Im a nutjob lol.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET MVC Model and Business Rules Validation by ASP.NET MVC Archived Blog Posts, Page 1</title>
		<link>http://www.myverbaloutlet.net/2008/09/aspnet-mvc-model-and-business-rules-validation/comment-page-1/#comment-37</link>
		<dc:creator>ASP.NET MVC Archived Blog Posts, Page 1</dc:creator>
		<pubDate>Sat, 06 Sep 2008 16:40:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.myverbaloutlet.net/2008/09/aspnet-mvc-model-and-business-rules-validation/#comment-37</guid>
		<description>[...] to VoteASP.NET MVC Model and Business Rules Validation (9/5/2008)Friday, September 05, 2008 from MatthewASP.NET MVC Preview 5 is the release I have been waiting for [...]</description>
		<content:encoded><![CDATA[<p>[...] to VoteASP.NET MVC Model and Business Rules Validation (9/5/2008)Friday, September 05, 2008 from MatthewASP.NET MVC Preview 5 is the release I have been waiting for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET MVC Model and Business Rules Validation by Emad</title>
		<link>http://www.myverbaloutlet.net/2008/09/aspnet-mvc-model-and-business-rules-validation/comment-page-1/#comment-36</link>
		<dc:creator>Emad</dc:creator>
		<pubDate>Fri, 05 Sep 2008 19:00:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.myverbaloutlet.net/2008/09/aspnet-mvc-model-and-business-rules-validation/#comment-36</guid>
		<description>I kind of like the new ActionName and AcceptVerbs attributes.  I am able to create something like

[ActionName(&quot;Create&quot;), AcceptVerbs(&quot;GET&quot;)]
public ActionResult Create(){}

and

[ActionName(&quot;Create&quot;), AcceptVerbs(&quot;POST&quot;)]
public ActionResult Save(string username, string email){}

Both URLs will be &quot;{controller}\Create&quot; but the one named New runs for Get and the one named Save runs for post.

Which in my opinion is easier and cleaner than if statements.

-Emad</description>
		<content:encoded><![CDATA[<p>I kind of like the new ActionName and AcceptVerbs attributes.  I am able to create something like</p>
<p>[ActionName("Create"), AcceptVerbs("GET")]<br />
public ActionResult Create(){}</p>
<p>and</p>
<p>[ActionName("Create"), AcceptVerbs("POST")]<br />
public ActionResult Save(string username, string email){}</p>
<p>Both URLs will be &#8220;{controller}\Create&#8221; but the one named New runs for Get and the one named Save runs for post.</p>
<p>Which in my opinion is easier and cleaner than if statements.</p>
<p>-Emad</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What Hung Me Up On Using ASP.NET MVC Preview 4 by Andy</title>
		<link>http://www.myverbaloutlet.net/2008/08/what-hung-me-up-on-using-aspnet-mvc-preview-4/comment-page-1/#comment-30</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Sat, 16 Aug 2008 01:03:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.myverbaloutlet.net/2008/08/what-hung-me-up-on-using-aspnet-mvc-preview-4/#comment-30</guid>
		<description>Validation attributes are now part of System.ComponentModel.DataAnnotations. Scaffolding with WebForms is now in .NET 3.5 SP1 with Dynamic Data. And a preview for MVC is available at http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=15459. So whilst the full tools and libraries aren&#039;t complete, the direction validation is taking - model metadata and dynamic validators - is fairly clear.</description>
		<content:encoded><![CDATA[<p>Validation attributes are now part of System.ComponentModel.DataAnnotations. Scaffolding with WebForms is now in .NET 3.5 SP1 with Dynamic Data. And a preview for MVC is available at <a href="http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=15459" rel="nofollow">http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=15459</a>. So whilst the full tools and libraries aren&#8217;t complete, the direction validation is taking &#8211; model metadata and dynamic validators &#8211; is fairly clear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What Hung Me Up On Using ASP.NET MVC Preview 4 by Eric Williams</title>
		<link>http://www.myverbaloutlet.net/2008/08/what-hung-me-up-on-using-aspnet-mvc-preview-4/comment-page-1/#comment-29</link>
		<dc:creator>Eric Williams</dc:creator>
		<pubDate>Thu, 14 Aug 2008 06:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.myverbaloutlet.net/2008/08/what-hung-me-up-on-using-aspnet-mvc-preview-4/#comment-29</guid>
		<description>Steve Sanderson has a very impressive solution to this, http://blog.codeville.net/2008/04/30/model-based-client-side-validation-for-aspnet-mvc/</description>
		<content:encoded><![CDATA[<p>Steve Sanderson has a very impressive solution to this, <a href="http://blog.codeville.net/2008/04/30/model-based-client-side-validation-for-aspnet-mvc/" rel="nofollow">http://blog.codeville.net/2008/04/30/model-based-client-side-validation-for-aspnet-mvc/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET MVC Here Be Dragons by Stephen Walther</title>
		<link>http://www.myverbaloutlet.net/2008/07/aspnet-mvc-here-be-dragons/comment-page-1/#comment-24</link>
		<dc:creator>Stephen Walther</dc:creator>
		<pubDate>Thu, 24 Jul 2008 16:25:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.myverbaloutlet.net/2008/07/aspnet-mvc-here-be-dragons/#comment-24</guid>
		<description>You should use RedirectToAction instead of RedirectToRoute to redirect to a controller action. Use RedirectToAction(action name, controller name).

Don&#039;t worry -- there are a lot of tutorials and videos on ASP.NET MVC on the way from Microsoft. The best websites to visit to get information on MVC right now are:

http://asp.net/mvc
http://StephenWalther.com 

  -- Stephen Walther
     ASP.NET MVC Community Liaison</description>
		<content:encoded><![CDATA[<p>You should use RedirectToAction instead of RedirectToRoute to redirect to a controller action. Use RedirectToAction(action name, controller name).</p>
<p>Don&#8217;t worry &#8212; there are a lot of tutorials and videos on ASP.NET MVC on the way from Microsoft. The best websites to visit to get information on MVC right now are:</p>
<p><a href="http://asp.net/mvc" rel="nofollow">http://asp.net/mvc</a><br />
<a href="http://StephenWalther.com" rel="nofollow">http://StephenWalther.com</a> </p>
<p>  &#8212; Stephen Walther<br />
     ASP.NET MVC Community Liaison</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Evaluating the IE 7 UI by Matthew</title>
		<link>http://www.myverbaloutlet.net/2008/04/evaluating-the-ie-7-ui/comment-page-1/#comment-3</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Wed, 23 Apr 2008 13:02:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.myverbaloutlet.net/?p=13#comment-3</guid>
		<description>Thanks for the feedback that is great.  I never knew you could rearrange the toolbar buttons that way.  I love to learn new stuff like that.</description>
		<content:encoded><![CDATA[<p>Thanks for the feedback that is great.  I never knew you could rearrange the toolbar buttons that way.  I love to learn new stuff like that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Evaluating the IE 7 UI by Fx3</title>
		<link>http://www.myverbaloutlet.net/2008/04/evaluating-the-ie-7-ui/comment-page-1/#comment-2</link>
		<dc:creator>Fx3</dc:creator>
		<pubDate>Tue, 22 Apr 2008 19:46:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.myverbaloutlet.net/?p=13#comment-2</guid>
		<description>View, Toolbars, Customize, click and drag the buttons anywhere on the toolbar, at least on Firefox 3, maybe you can do the same on Firefox 2 also, but I don&#039;t use Firefox 2 so I&#039;m not sure about that. 

Firefox 3 is far superior to IE7 and IE8 Beta 1 which I have installed to see if MS has improved anything in their much maligned browser, which they haven&#039;t and can&#039;t expect much from MS.</description>
		<content:encoded><![CDATA[<p>View, Toolbars, Customize, click and drag the buttons anywhere on the toolbar, at least on Firefox 3, maybe you can do the same on Firefox 2 also, but I don&#8217;t use Firefox 2 so I&#8217;m not sure about that. </p>
<p>Firefox 3 is far superior to IE7 and IE8 Beta 1 which I have installed to see if MS has improved anything in their much maligned browser, which they haven&#8217;t and can&#8217;t expect much from MS.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
