Avoiding IE Script Leaks

Just came across this post on MSDN weblogs which points to this MSDN article which identifies the common patterns that scripters leverage that can cause leaks within web applications for users browsing with IE (any browser that uses MSHTML really). The gist of the problem is that both JScript, Microsoft’s ECMAScript implementation, and MSHTML, the […]

f(m): A Client JavaScript Library That Mimics .NET BCL

I came across the f(m) project via the Ajaxian Blog. It’s pretty neat to see someone undertaking this. I realize there’s lots of little scripting frameworks out there, but AFAIK no one has taken the same angle to model it after the .NET BCL. One of the coolest libraries f(m) offers is one that mimics System.Threading. For […]

Mozilla/FireFox Not Written By Magical Software Elves After All

Now, I loooove Mozilla/FireFox and am so happy that there’s such a great alternative to IE (especially since it’s available on other platforms) so this isn’t a knock on the technology. It’s targeted at the people who like to pretend that the Mozilla/FireFox codebase is somehow blessed by the software gods to be completely free of flaws/vulnerabilities. The realists in this industry […]

Exposing Public Properties From Your ASP.NET Pages Considered Harmful?

Betrand Le Roy made a post called “Why you shouldn’t expose public properties from your pages”. For the 99% of the scenarios I agree with him since it would obviously prevent your control from being reused ubiquitously, but there is at least one scenario where I see this as acceptable: when creating a shell environment scenario like […]

ParseChildren(true, “Content”) Fails When Child is a Form Element?

I’ve looked around and haven’t seen this described anywhere. It’s a tough bug to come up with a succint search query for though, so maybe I just missed someone else reporting it. In any case here are the details in case anyone else ever runs into this. Basically, if you create a UserControl, decorate it’s code-behind […]