Welcome to Bilal Haidar [MVP, MCT] Official Blog Sign in | Join | Help

Browse by Tags

All Tags » ASP.NET 2.0   (RSS)

Update on My First Book on ASP.NET - Professional ASP.NET 3.5 Security, Membership and Role Management with C# and VB

Now you can check my book on www.amazon.com by visiting the following link: Professional ASP.NET 3.5 Security, Membership, and Role Management with C# and VB See larger image Professional ASP.NET 3.5 Security, Membership, and Role Management with C# and

Binding a DropDownList in ASP.NET to an Enumeration

Here is a snippet code that helps you bind the items contained in an enumeration into a DropDownList in ASP.NET. To start with, let us define an enumeration as follows: public enum Directions { North = 1, East, South, West } The above is a C# definition