Posts

Easy way to store objects in a database using C# / .NET

I wanted a way to save objects easily and quickly to a SQL database in ASP.NET projects, so I wrote a class library that can serialize any object. You can read the article here .

Image Button Article

I've updated the article about image buttons. The old buttons did the rollover effect when you moved the mouse anywhere over the button, but the hyperlink only worked if the mouse was over the text. I've worked out how to make the hyperlink work over the whole button now, by specifying padding round the text. By the way, I'm planning to turn this into an ASP.NET control, so if you're into ASP.NET watch this space!

Debugging UI Objects Running Worker Threads

You can view this full page by following this link ).

Visual Studio C# Refactoring EncapsulateField Enhancement

You can view this full page by following this link ).

Date Parsing, Addition and Display in Javascript

Despite there being a lot of articles about date parsing on the internet, I couldn't find any simple examples of how to read a user entered date (e.g. from a text box), and then manipulate it (in my case subtract a day) and then re-display it to the user. So I wrote the following function (you can view this full page by following this link ).

Image Buttons Using CSS

I recently wanted to come up some buttons with rollover effects using CSS, where I could use the same image, but different text for each button. The following article describes how I did it (you can view this full page by following this link ).