One useful little control we wrote for ASP.NET is our BindOnPreRender control. It simply calls DataBind() on itself at PreRender.
Its utility may not be obvious. This is sort of related to my post on WebForms DataBinding. Binding is better. It lets us bind properties to objects in our markup, which helps reduce code-behind. I’m not [...]