Archive for the 'ASP.NET' Category
Hierarchies with Nested Repeaters in ASP.NET
Thursday, July 6th, 2006In most every project I have ever worked on there is some type of hierarchy to the data and ultimately I need to represent this data in some hierarchical fashion to the user. Nested repeaters work very well in these situations and are quite easy to implement.
I am a big proponent of the repeater control […]
Dynamically Set Title and Meta Tags with MasterPages
Wednesday, June 14th, 2006I use MasterPages in all of my ASP.NET websites. I can’t even imagine having a site that doesn’t use them. If you have pages with dynamic content it is important to be updating your page title and meta tags to correspond to the page content. This is probably most important if you have public-facing websites […]
Add Default Item to DropDownList
Tuesday, June 13th, 2006In many situations when I am using a DropDownList I need to provide a default option for the user. Perhaps there isn’t a relevant value in the list for them to choose or perhaps the List doesn’t apply. In these situations I like to add a default ListItem with an index of 0 to show […]