Technology
Sending Email in ASP .NET
I can't think of too many websites that don't send automated email. Unfortunately, for ASP .NET programmers, there are several incorrect and out-of-date code snippets online which try to explain how to send email. Here's the code I use on the contact form for
Getting Started With Git and TortoiseGit on Windows
Version control is essential to the success of any software project. It provides the ability for multiple developers to work on the same codebase simultaneously and allows projects to be versioned for release. However, a great deal of programmers fail to leverage the great benefits of version control for their
Working With Custom Time Strings in C#
Let's say we need to process some external data where the format and contents of the files are out of our control. To make matters worse, what if those same external files store tiemstamps in a foreign format that DateTime.Parse() does not understand? It would be ill-advised
Using .NET to Monitor a Directory for Changes
.NET's FileSystemWatcher class can soothe the paranoid control freak in all of us by monitoring a specified folder for different types of file system changes. The Code FileSystemWatcher watcher = new FileSystemWatcher(@"D:\test"); The core of is application is .NET's FileSystemWatcher [http://msdn.microsoft.