ASP.NET
9 April 2009 | 0 Comments
User Controls in ASP.NET are a great tool - they allow you to consolidate sections of code into a reusable piece that you can use anywhere on your site - or even copy the control to a different site. The only issue I had with user controls was that you had to register the code [...]
ASP.NET
4 December 2008 | 2 Comments
Building an ASP.NET site, I needed to use a server-side CheckBoxList control. Much to my irritation, the server control output each <input type="checkbox" /> in a tr of a table containing the entire list. I thought, how awful! Fortunately, I found a way for the server control to quickly output each input in spans rather [...]