<?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: Foolproof Provides Contingent Data Annotation Validation for ASP.NET MVC 2</title>
	<atom:link href="http://www.nickriggs.com/posts/foolproof-provides-contingent-data-annotation-validation-for-asp-net-mvc-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nickriggs.com/posts/foolproof-provides-contingent-data-annotation-validation-for-asp-net-mvc-2/</link>
	<description>Making stuff up about web development since last week.</description>
	<lastBuildDate>Wed, 01 Feb 2012 16:29:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Nick Riggs</title>
		<link>http://www.nickriggs.com/posts/foolproof-provides-contingent-data-annotation-validation-for-asp-net-mvc-2/comment-page-1/#comment-1467</link>
		<dc:creator>Nick Riggs</dc:creator>
		<pubDate>Wed, 20 Oct 2010 23:23:02 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=213#comment-1467</guid>
		<description>Nando, check out my latest post on the subject: http://www.nickriggs.com/posts/asp-net-mvc-3-data-annotations-provide-property-level-contingent-validation/</description>
		<content:encoded><![CDATA[<p>Nando, check out my latest post on the subject: <a href="http://www.nickriggs.com/posts/asp-net-mvc-3-data-annotations-provide-property-level-contingent-validation/" rel="nofollow">http://www.nickriggs.com/posts/asp-net-mvc-3-data-annotations-provide-property-level-contingent-validation/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nando</title>
		<link>http://www.nickriggs.com/posts/foolproof-provides-contingent-data-annotation-validation-for-asp-net-mvc-2/comment-page-1/#comment-1465</link>
		<dc:creator>Nando</dc:creator>
		<pubDate>Wed, 20 Oct 2010 21:56:40 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=213#comment-1465</guid>
		<description>Very cool. Had to recompile in .NET 4.0 to use in my project. I was wondering if using this still makes sense in 4.0/MVC 3? or would you think the need for the Foolproof library is being replaced by standard MVC enhancement?</description>
		<content:encoded><![CDATA[<p>Very cool. Had to recompile in .NET 4.0 to use in my project. I was wondering if using this still makes sense in 4.0/MVC 3? or would you think the need for the Foolproof library is being replaced by standard MVC enhancement?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ASP.NET MVC2 数据模型验证类库：MVC Foolproof Validation - 自由、创新、研究、探索 - 博客园</title>
		<link>http://www.nickriggs.com/posts/foolproof-provides-contingent-data-annotation-validation-for-asp-net-mvc-2/comment-page-1/#comment-780</link>
		<dc:creator>ASP.NET MVC2 数据模型验证类库：MVC Foolproof Validation - 自由、创新、研究、探索 - 博客园</dc:creator>
		<pubDate>Sat, 24 Jul 2010 01:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=213#comment-780</guid>
		<description>[...] Foolproof Provides Contingent Data Annotation Validation for ASP.NET MVC 2 [...]</description>
		<content:encoded><![CDATA[<p>[...] Foolproof Provides Contingent Data Annotation Validation for ASP.NET MVC 2 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Riggs</title>
		<link>http://www.nickriggs.com/posts/foolproof-provides-contingent-data-annotation-validation-for-asp-net-mvc-2/comment-page-1/#comment-627</link>
		<dc:creator>Nick Riggs</dc:creator>
		<pubDate>Wed, 23 Jun 2010 22:20:42 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=213#comment-627</guid>
		<description>@Akmal, that doesn&#039;t surprise me. The MVC framework is using the FoolproofValidator class to call a different IsValid() method than what&#039;s in a standard ValidationAttribute. 


So the short answer is No, it can&#039;t run outside of Foolproof. 


The long answer is yes - or probably rather. You would need to create a sub class of Validator that knows to call ModelAwareValidationAttribute&#039;s IsValid(object, object) method.</description>
		<content:encoded><![CDATA[<p>@Akmal, that doesn&#8217;t surprise me. The MVC framework is using the FoolproofValidator class to call a different IsValid() method than what&#8217;s in a standard ValidationAttribute. </p>
<p>So the short answer is No, it can&#8217;t run outside of Foolproof. </p>
<p>The long answer is yes &#8211; or probably rather. You would need to create a sub class of Validator that knows to call ModelAwareValidationAttribute&#8217;s IsValid(object, object) method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Akmal</title>
		<link>http://www.nickriggs.com/posts/foolproof-provides-contingent-data-annotation-validation-for-asp-net-mvc-2/comment-page-1/#comment-623</link>
		<dc:creator>Akmal</dc:creator>
		<pubDate>Wed, 23 Jun 2010 15:40:47 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=213#comment-623</guid>
		<description>Hi,
Can I use foolproof in non MVC projects? (using buddy classes). When I try to use a foolproof attribute and try validation using Validator.TryValidateObject method, it results in a method or operation not implemented exception - from ModelAwareValidationAttribute class.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Can I use foolproof in non MVC projects? (using buddy classes). When I try to use a foolproof attribute and try validation using Validator.TryValidateObject method, it results in a method or operation not implemented exception &#8211; from ModelAwareValidationAttribute class.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Riggs</title>
		<link>http://www.nickriggs.com/posts/foolproof-provides-contingent-data-annotation-validation-for-asp-net-mvc-2/comment-page-1/#comment-412</link>
		<dc:creator>Nick Riggs</dc:creator>
		<pubDate>Fri, 14 May 2010 13:24:34 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=213#comment-412</guid>
		<description>@William, what is the error message?</description>
		<content:encoded><![CDATA[<p>@William, what is the error message?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: William</title>
		<link>http://www.nickriggs.com/posts/foolproof-provides-contingent-data-annotation-validation-for-asp-net-mvc-2/comment-page-1/#comment-408</link>
		<dc:creator>William</dc:creator>
		<pubDate>Thu, 13 May 2010 19:54:33 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=213#comment-408</guid>
		<description>Maybe I&#039;m missing something, but I can&#039;t get this to work. I added the .dll file to the lib project in my solution, created a reference to it and still can&#039;t get my class to recognize the attribute names listed.</description>
		<content:encoded><![CDATA[<p>Maybe I&#8217;m missing something, but I can&#8217;t get this to work. I added the .dll file to the lib project in my solution, created a reference to it and still can&#8217;t get my class to recognize the attribute names listed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cna training</title>
		<link>http://www.nickriggs.com/posts/foolproof-provides-contingent-data-annotation-validation-for-asp-net-mvc-2/comment-page-1/#comment-247</link>
		<dc:creator>cna training</dc:creator>
		<pubDate>Wed, 31 Mar 2010 08:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=213#comment-247</guid>
		<description>nice post. thanks.</description>
		<content:encoded><![CDATA[<p>nice post. thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ASP.NET MVC Archived Blog Posts, Page 1</title>
		<link>http://www.nickriggs.com/posts/foolproof-provides-contingent-data-annotation-validation-for-asp-net-mvc-2/comment-page-1/#comment-245</link>
		<dc:creator>ASP.NET MVC Archived Blog Posts, Page 1</dc:creator>
		<pubDate>Mon, 29 Mar 2010 05:09:02 +0000</pubDate>
		<guid isPermaLink="false">http://nickriggs.com/?p=213#comment-245</guid>
		<description>[...] to VoteFoolproof Provides Contingent Data Annotation Validation for ASP.NET MVC 2 (3/22/2010)Monday, March 22, 2010 from Nick RiggsI like preforming validation using Data Annotations in ASP.NET [...]</description>
		<content:encoded><![CDATA[<p>[...] to VoteFoolproof Provides Contingent Data Annotation Validation for ASP.NET MVC 2 (3/22/2010)Monday, March 22, 2010 from Nick RiggsI like preforming validation using Data Annotations in ASP.NET [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

