![]() |
Tags | Domains | Searches | Statistics | Options | Advanced Search |
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 …
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 …
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 …
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
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