From the monthly archives:

August 2009

If you are a programmer, or work in front of a pc all day, and have been doing it for a while, I’m sure you’ve either experienced RSI yourself, or else you know someone who has. RSI, or Repetitive Strain Injury, is not something to be taken lightly as it can become quite serious if [...]

{ 0 comments }

Sometimes it can be useful to override a method, be it your own or maybe even one of .NET’s methods. In this example I am going to create a simple class and then show you how to override its ToString() method.
In .NET, whenever you create a class, the ToString() method is automatically created for you [...]

{ 0 comments }

As a developer I am sure you have come across the need to generate some random text – most likely for testing load or something similar. In this short article I am going to show you how you can generate random text and random sentences quite quickly.
To start off I am going to create a [...]

{ 1 comment }

In this article I am going to show you how to create a secure login screen for your ASP.NET website – the proper way. I have come across many examples which do not show the correct way of implementing this, so I decided to create my own example and clarify the facts a little.
The Web [...]

{ 0 comments }

In this article I’m going to show you how to create your very own class library – also know as a dll file. We’ll be building a class containing a static text hashing method, which we’ll then call from a separate application. After reading this article you will know exactly how to create a dll [...]

{ 2 comments }