Ted Haeger , aka ReverendTed of Bungee Labs (purveyors of the most kill-killski development toolkit for Web 2.0 developers, in the world), merely printed a thought agitative blog post requiring his readers: Can we…? Confide Microsoft with Claimspace Ted has in person gainsaid me to answer and I design to do indeed, in the next couple of days. [...]
May 29, 2008
May 28, 2008
Where to Find oneself Expert Support
Microsoft’s prescribed support website is http://support.microsoft.com/. It has all kinds of resources like product FAQs, downloads, searchable KB articles, newsgroup pointers, and ways to hit people to help with your single needs or feedback. Alas, I can’t consecrate attention to single customer issues. That’s because I work in product design and development, not customer support. [...]
March 24, 2008
LINQ – The Uber FindControl
Also see: Trust Microsoft with Claimspace (my response pending) 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 (Control control in controls) { foreach (Control grandChild in control.Controls.All()) yield return [...]
