In his recent blog post, A Quick Example of YAGNI, Jeremy Miller presents what is quite possibly the worst example of YAGNI I've ever read.
Continue reading "A Really Bad Example of YAGNI"
In his recent blog post, A Quick Example of YAGNI, Jeremy Miller presents what is quite possibly the worst example of YAGNI I've ever read.
Continue reading "A Really Bad Example of YAGNI"
Extraneous attributes. Default styles. Stray markup. Sometimes, ASP.NET server controls just don't render the way you want them to. Even in those cases where Microsoft is just trying to be "helpful", sometimes I just want them to get out of the way and let me do my thing. Here, I'll demonstrate a quick-and-dirty way to get rid of that extra markup, using the
Continue reading "Fixing ASP.NET Server Control Rendering Issues with Tag Mapping"
To take full advantage of all the great stuff the ListView has to offer, it's important to understand how to properly bind controls that are nested inside of it. Once you know how, it's easy to embed any data-bound control like DropDownLists, CheckBoxLists, and even other ListViews inside your ListView. Here, I'm going to demonstrate two different ways to do this.
Continue reading "Nested ListViews and More - Working with Databound Controls Inside the ListView"