Tag: Development

Community

User Administration Tool (Part 2)

(Bipin Joshi) In the Part 1 of this series we started developing a web user control that allows us to manage various aspects of user administration such as password recovery, role mapping and profile management. We configured the database and web site for availing membership, role and profile featur

Community

A Better MRU List – MruDictionary

(Jim Mischel) A simple linked list implementation of the MRU list is fine if you have few items that you’re not accessing often, but as you add more items you’ll soon be spending a lot of processor time searching the list sequentially for a particular key. For larger lists, you need a way to find an

Community

About Web Services

The evolution of the internet and its exponential growth in recent years has resulted in gradual shift from desktop to distributed applications. This shift has led to the development of complex enterprise applications that are managed across different platforms and geographical boundaries. These app

Community

Understanding Interfaces in C#

(Brendan Enrick) Interfaces basically define a blueprint for a class or a struct. The programmed definition of an interface looks very similar to a class, but nothing is implemented. Interfaces define the properties, methods, events, and indexers, but the interface does not define the implementation