Here you will find a wide variety of programming articles, mainly about C# and ASP.NET, but also some XHTML, CSS and javascript. I want to cover the whole programming lifecycle, so I'll include details of tools that I find useful, as well as strategies for design and testing.
Debugging UI Objects Running Worker Threads
Get link
Facebook
X
Pinterest
Email
Other Apps
You can view this full page by following this link).
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 .
I've updated all the articles to point to my new website. A lot of these articles were written a long time ago now, but I think they may still be useful.
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 ).
Comments