David Findley's Blog
My little home in the cloud.
Sign in
|
Join
Home
Contact
About
RSS
Atom
Comments RSS
Search
Tags
.NET
AJAX
ASP.NET
Atlas
Blogging
Browser Plugins
C#
Debugging
DLINQ
Gadgets
Guitar
JavaScript
LINQ
Mac
Monad
Music
MVC
Open Source
PDC
Portable
Programming Languages
Rails
Ruby
Shared Source
Software Development
SQL
Team System
TFS
Tips
Tools
Vista
Visual Studio
Web Platform Installer
Windows
Windows Power Shell
XLINQ
XMAS
Navigation
Home
Blogs
Archives
March 2010 (1)
May 2009 (1)
March 2009 (2)
December 2007 (1)
June 2007 (2)
February 2007 (4)
November 2006 (3)
October 2006 (3)
September 2006 (5)
August 2006 (4)
July 2006 (2)
June 2006 (13)
May 2006 (13)
April 2006 (6)
March 2006 (2)
February 2006 (1)
January 2006 (1)
November 2005 (3)
October 2005 (3)
September 2005 (5)
August 2005 (3)
July 2005 (4)
November 2004 (1)
August 2004 (1)
July 2004 (6)
June 2004 (1)
May 2004 (4)
March 2004 (3)
February 2004 (8)
January 2004 (1)
December 2003 (1)
November 2003 (3)
May 2003 (5)
April 2003 (5)
.NET Resources
Learn Visual Studio
Shadowfax Workspace
Blogs I Read
Lance's Whiteboard
Erik Porter
Brad Abrams
Rico Mariani
Scott Guthrie
June 2007 - Posts
28
Comments
LINQ - The Uber FindControl
by
findleyd
With a simple extension method to ControlCollection to flatten the control tree you can use LINQ to query the control tree: public static class PageExtensions { public static IEnumerable<Control> All( this ControlCollection controls) { foreach ...
13
Comments
A Quick Fix for the Validator SetFocusOnError Bug
by
findleyd
The ASP.NET validators have this nice property called "SetFocusOnError" that is supposed to set the focus to the first control that failed validation. This all works great until your validator control is inside a naming container. I ran into this recently...
Filed under:
C#
,
ASP.NET
More Posts