February 2008 Entries

Vista SP1

Well, even though I had heard before that Vista SP1 wasn't going to be out until March time and I just did a quick Google News search and the most recent article from Computer World still says that it won't be released until then, I was surprised to see that Windows Automatic Update had downloaded SP1 and was ready to install. I had heard about issues people were having with it making their computer unbootable, but since I had migrated to Vista x64 I was missing the additional features SP1 brought...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Recurse the Control Tree in ASP.NET

I came across a need the other day to recurse the page control tree (or any control tree really) to find all controls of a certain type, so this is the extension method I wrote to help me do that. Hopefully it will help others as well. /// <summary> /// Recurses the control tree and finds all controls in the control collection that are of the specified type. /// </summary> /// <typeparam name="T">The type of control you want to find</typeparam> /// <param name="controls">The...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati