Speeple News Search

Search: |

Tags | Domains | Searches | Statistics | Options | Advanced Search

asp.net » Feeds » David Findley's Blog

Yearly Archives: 2008

Latest news from David Findley's Blog

  1. Merry Christmas Indeed!

    Sep 29, 2008

    Janice went all out this year and got me an Ibanez JS1000 (Joe Satriani series) guitar, a Line 6 POD X3 Live effects board and a pair of Roland CM-30 amplified monitors. My fingers are all tore up now since I've been

    Tagged: music, xmas, guitar

  2. LINQ - The Uber FindControl

    Sep 29, 2008

    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 All(this ControlCollection

  3. A Quick Fix for the Validator SetFocusOnError Bug

    Sep 29, 2008

    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

    Tagged: asp net, c

  4. VS.NET Macro To Group and Sort Your Using Statements

    Sep 29, 2008

    I try to follow a coding standard for organizing my using statements. System.* goes at the top and then other namespaces grouped together like this: using System; using System.Collections.Generic; using

    Tagged: visual studio, c

  5. Fix ReturnUrl When Sharing Forms Authentication with Multiple Web Applications

    Sep 29, 2008

    Scenario: You have two web applications www.mydomain.com and login.mydomain.com. The login site provides a centralized login application and www contains any number of web applications that should use the auth ticket

    Tagged: asp net