C# - Folder Deletion Utility
7/19/2010 7:50:09 PM
|
Here's a small program that I wrote to recursively delete empty folders. It comes with a few options such as permanent delete or deleting to the recycle bin. Read more to see how it works.
Read More...
|
|
|
jQuery - Rotating through html elements (like an image slide show)
6/30/2010 9:25:22 AM
|
Here's a simple script to rotate through the html in a series of list items (like an image slide show/carousel).
Read More...
|
|
|
Javascript - Simple function to format currency values in a textbox
1/26/2010 8:52:32 AM
|
I've written a small function that formats the value of a textbox by adding comma's in the appropriate position if they're not there. So something like 50000 would look like 50,000.
Read More...
|
|
|
ASP.NET - Iterating through controls in an update panel.
10/20/2009 2:24:21 PM
|
I've written a helper method to iterate through a collection of controls on my page and set certain properties based on their type. Without an update panel I could simply pass the collection of controls from my page and it would loop through them all as I expected. After I added an update panel I the textboxes in that panel we're no longer included. Here's how I solved my problem...
Read More...
|
|
|
JAVASCRIPT - Simple function to reset all form elements
8/28/2009 7:54:04 AM
|
There's a simple way to loop through all form elements and reset their value (instead of referring to each element by it's id and resetting it explicitly), here's how...
Read More...
|
|
|