<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Kev'n Roberts - All Comments</title><link>http://weblogs.asp.net/kevnroberts/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Debug Build: 20510.895)</generator><item><title>re: ValidationGroup on the ValidationSummary Control</title><link>http://weblogs.asp.net/kevnroberts/archive/2008/05/12/validationgroup-on-the-validationsummary-control.aspx#7162418</link><pubDate>Thu, 06 Aug 2009 05:28:50 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7162418</guid><dc:creator>lekshmi</dc:creator><description>&lt;p&gt;Very good post. I alomost spend an hour trying ti figure out the problem. Thanks so much!&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7162418" width="1" height="1"&gt;</description></item><item><title>re: ValidationGroup on the ValidationSummary Control</title><link>http://weblogs.asp.net/kevnroberts/archive/2008/05/12/validationgroup-on-the-validationsummary-control.aspx#7092988</link><pubDate>Tue, 19 May 2009 19:02:32 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7092988</guid><dc:creator>Bogdan</dc:creator><description>&lt;p&gt;Did anyone noticed that MS says &amp;quot;...ValidationSummary property...&amp;quot; There is no such property. There is a ValidationGroup property, yes, but no ValidationSummary. ValidationSummary is a control, not a property. Can this be just a typo from Microsoft, or I&amp;#39;m missing something? &lt;/p&gt;
&lt;p&gt;I recently bumped into this while trying to debug a page with 2 ValidationSummary controls (one for &amp;quot;ValidationGroup1&amp;quot;, the other for &amp;quot;ValidationGroup2&amp;quot;). Both summary controls show up when I submit the page. Both of them show all the error messages from individual control validators despite the setting of ValidationGroup property.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m stuck. I&amp;#39;m using UpdatePanels and this might be the cause. I don&amp;#39;t know...&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7092988" width="1" height="1"&gt;</description></item><item><title>re: ValidationGroup on the ValidationSummary Control</title><link>http://weblogs.asp.net/kevnroberts/archive/2008/05/12/validationgroup-on-the-validationsummary-control.aspx#6831609</link><pubDate>Mon, 12 Jan 2009 20:18:56 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6831609</guid><dc:creator>Ian</dc:creator><description>&lt;p&gt;Did you just set the validationgroup property on both validators, textboxes and validation summaries, or perform some other (eg page.validate) function on the action for switching panels?&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6831609" width="1" height="1"&gt;</description></item><item><title>re: ValidationGroup on the ValidationSummary Control</title><link>http://weblogs.asp.net/kevnroberts/archive/2008/05/12/validationgroup-on-the-validationsummary-control.aspx#6185573</link><pubDate>Tue, 13 May 2008 05:59:40 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6185573</guid><dc:creator>W.Meints</dc:creator><description>&lt;p&gt;That's actually rather quick. I didn't know that until now. Good to know since I use validation groups a lot.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6185573" width="1" height="1"&gt;</description></item><item><title>re: Session Dump Utility</title><link>http://weblogs.asp.net/kevnroberts/archive/2008/05/04/session-dump-utility.aspx#6159320</link><pubDate>Mon, 05 May 2008 13:27:13 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6159320</guid><dc:creator>Nis L. Simonsen</dc:creator><description>&lt;p&gt;Quick thought: Given that the stuff you put in session is implicitly serializable, why not just let an XmlSerializer do the grunt work?&lt;/p&gt;
&lt;p&gt;I use the code below for dumping an object into a text file (this is just some stub code, so performance is not an issue); you could modify it to dump to the output stream instead:&lt;/p&gt;
&lt;p&gt;public static void SerializeToFile(string filepath, object instance)&lt;/p&gt;
&lt;p&gt;		{&lt;/p&gt;
&lt;p&gt;			XmlSerializer serializer = new XmlSerializer(instance.GetType());&lt;/p&gt;
&lt;p&gt;			Stream writer = new FileStream(filepath, FileMode.Create);&lt;/p&gt;
&lt;p&gt;			serializer.Serialize(writer, instance);&lt;/p&gt;
&lt;p&gt;			writer.Close();&lt;/p&gt;
&lt;p&gt;		}&lt;/p&gt;
&lt;p&gt;(Again, just a quick thought, I might have missed a point or two :) )&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6159320" width="1" height="1"&gt;</description></item><item><title>re: Session Dump Utility</title><link>http://weblogs.asp.net/kevnroberts/archive/2008/05/04/session-dump-utility.aspx#6159144</link><pubDate>Mon, 05 May 2008 12:24:58 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6159144</guid><dc:creator>kevnroberts</dc:creator><description>&lt;p&gt;Hi Nawaz,&lt;/p&gt;
&lt;p&gt;You can use the &amp;lt;trace enabled=&amp;quot;true&amp;quot; /&amp;gt; which will show you a lot of information. It shows you what is in Session, but only at the top level. In other words, if I put an object in Session, it will simply call the &amp;quot;ToString()&amp;quot; method of the object, which will just give me the type of object it is. It does not read all the properties of the object and display them as well.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6159144" width="1" height="1"&gt;</description></item><item><title>re: Session Dump Utility</title><link>http://weblogs.asp.net/kevnroberts/archive/2008/05/04/session-dump-utility.aspx#6158478</link><pubDate>Mon, 05 May 2008 07:06:25 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6158478</guid><dc:creator>Nawaz Ali</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Its a nice little piece of code, I was wondering if you could use the APPLICATION-LEVEL TRACE LOGGING?&lt;/p&gt;
&lt;p&gt;Isnt it what could also be used for this purpose with &amp;lt;trace enabled=&amp;quot;true&amp;quot; /&amp;gt; tag?&lt;/p&gt;
&lt;p&gt;Nawaz&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6158478" width="1" height="1"&gt;</description></item><item><title>re: Session Dump Utility</title><link>http://weblogs.asp.net/kevnroberts/archive/2008/05/04/session-dump-utility.aspx#6158288</link><pubDate>Mon, 05 May 2008 05:45:16 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6158288</guid><dc:creator>Ryan Ternier</dc:creator><description>&lt;p&gt;THe one thing I wish you could do as a developer is look at what everyone has in their own sessions... Even if you had to do this from the ISS Server itself. It would be amazing to switch a value in another person's session rather than force an update to a DataBase only to call an event on their next postback :\&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6158288" width="1" height="1"&gt;</description></item><item><title>April Links. If ScottGu can do it, I can do it as well :-)</title><link>http://weblogs.asp.net/kevnroberts/archive/2008/04/07/mvc-and-ajax.aspx#6077344</link><pubDate>Wed, 09 Apr 2008 06:39:28 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6077344</guid><dc:creator>Community Blogs</dc:creator><description>&lt;p&gt;Silverlight: Silverlight Roadmap questions Ashish Thapliyal Third Silverlight v1.0 Servicing Release&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6077344" width="1" height="1"&gt;</description></item><item><title>re: MVC and AJAX</title><link>http://weblogs.asp.net/kevnroberts/archive/2008/04/07/mvc-and-ajax.aspx#6074898</link><pubDate>Tue, 08 Apr 2008 14:28:30 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6074898</guid><dc:creator>Denny Ferrassoli</dc:creator><description>&lt;p&gt;Nice post, I really like Aaron's implementation.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6074898" width="1" height="1"&gt;</description></item></channel></rss>