Could Not Load File or Assembly Issue

Problem:
Could not load file or assembly ‘System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a’ or one of its dependencies. System could not find the file.
Cause:
System.EnterpriseServices.dll is missing in the GAC or there exist different versions of this dll.
Fix:
Drag and drop “<windows_directory>\Microsoft.NET\Framework\v2.0.50727\System.EnterpriseServices.dll”into the “<windows_directory>\assembly\” folder.
Source: http://forums.asp.net/t/956018.aspx

Must-Learned Semantic Tools

One of my interests is in Semantic Web. The following tools are great if you already know .NET, C#, RSS and RDF, and want to do more with Semantic Web.
Semantic Web/RDF Library for C#/.NET
SemWeb is my Semantic Web/RDF library written in C# for Mono or Microsoft’s .NET 1.1/2.0. The library can be used for reading [...]

Microsoft Silverlight for Developers

Date/Time:
Wednesday, January 30, 2008 6:00 PM - Wednesday, January 30, 2008 8:00 PM

Language(s):
English.

Product(s):
Other

Audience(s):
Architect,Developer,Other

Event Overview

 Abstract
Microsoft® Silverlight™ is a cross-browser, cross-platform plug-in for delivering the next generation of .NET based media experiences and rich interactive applications for the Web. Silverlight offers a flexible programming model that supports AJAX, VB, C#, Python, and Ruby, and [...]

Date and Time Format Patterns

I always forget how to format Date and Time in .NET whenever I need to use it, but fortunately there are Google and ASPAlliance.
Date and Time Format Patterns
All the patterns:
0    MM/dd/yyyy    01/23/2008
1    dddd, dd MMMM yyyy    Wednesday, 23 January 2008
2    dddd, dd MMMM yyyy HH:mm    Wednesday, 23 January 2008 16:38
3    dddd, dd MMMM yyyy hh:mm [...]

Lutz Roeder’s .NET Reflector

Ever wondered what the source code for System.Web.Mail.SmtpMail.Send() function looks like? Lutz Roeder’s .NET Reflector is great for looking at the source code of compiled DLLs. It’s located at http://www.aisto.com/roeder/dotnet/. Every .NET developer should definitely take a look.