Web User Control Hell
Web user controls.... an innovation that can make or break a good ASP.NET object oriented design.
The problem is, once you start modularizing your controls, and embedding them within each other, the event model breaks down. I guess breaks down is too soft, is just doesn't work. The answer? You have to write event handlers at higher levels that will trickle back down and trigger the correct event in the embedded control. Sheesh. It is easier to revert to classic ASP style solutions that to do this.
Anyone out there have a tried and true method for working this issue?