Archive for November 3rd, 2008
CSharp Enum
It is often tempting when working with your code to test against static values in your system. For example:
if (i == 1) { // do something } else if (i == 2) { // do something }
Or, if you are a bit more clever, you use a switch statement instead. But neither of these methods tell you what 1 and 2 actually represent. Read the rest of this entry »
Other Related Items:
Building Secure Microsoft ASP.NET Applications (Pro-Developer)This guide presents a practical, scenario-driven approach to designing and building security-enhanced ASP.NET applications for Microsoft® Windows® 2000 and version 1.1 of the Microsoft .NET Framework.
Beginner's ASP.NET in VB.NET 2003 on DVDASP.NET (VB.NET) 2003 represents an important technology for building enterprise level web applications. Learn the basics of ASP.NET development as yo... Read More >


