In VB6 we had Me.Forms; what happened? People stopped needing it, I guess. If you do though, here’s a slab to get you through. (more…)
October 2008
October 29, 2008
October 28, 2008
These two methods will allow you to generically locate a collection of Controls on any webform. (more…)
October 21, 2008
If you want to do your users a service, standardize on displaying certain things on your reports. This slab is a cheat sheet for doing just that. (more…)
October 16, 2008
After you’re done working on someone’s computer after hours, have you ever wanted to leave them a message? Here’s a Slab-ette that lets ‘em know what they need to know, then goes away. (more…)
October 16, 2008
Command line arguments are a very handy thing to have around. With them, you change connection strings, run special processing, anything. Here’s a quickie slab to get things rolling. (more…)
October 14, 2008
Importing into SQL Server from Excel isn’t as trivial as it sounds, but this slab codes straight outta production code. (more…)
October 9, 2008
SourceSafe. Love it or hate it, we live with it. Have you ever wondered what projects you have checked out? Or tried to get code, only to realize that the sloth we fired six months ago still has code checked out? Here’s a slab that produces the report SS should have! (more…)
October 8, 2008
If you ever need to recreate production web traffic in a different environment this code slab will come in handy. (more…)
October 7, 2008
Unfortunately, SQL Server doesn’t have a built in Title Case function. Roll your own with this slab. (more…)
October 6, 2008
Sortable GridView WebControl
Posted by kueue under C# | Tags: asp.net, custom control, GridView, objectdatasource, sorting |Leave a Comment
This custom GridView control extends the functionality of the ASP.NET GridView to implement sorting in a generic fashion. (more…)