How to: Create a Date Picker Composite Control in ASP.NET (C#) [Technical Blog]
Last Updated: 2 Jul 2009
Page Views: 5,316
Rating: 3.75/5
Votes: 4
Popularity: 2.26
Bookmark Count: 10
Licence: The Code Project Open License (CPOL)
codeproject download code here Introduction Composite controls are controls that combine multiple controls together to form a new reusable control. For example, a simple composite control could consist of both a Label control and a TextBox control. This example, however, puts one Tex
Asp.net date picker control part 2 [Technical Blog]
Last Updated: 24 Aug 2009
Page Views: 13,149
Rating: 4.57/5
Votes: 8
Popularity: 4.13
Bookmark Count: 24
Licence: The Code Project Open License (CPOL)
codeproject download code here Introduction In my previous post How to: Create a Date Picker Composite Control in ASP.NET (C#). I explained how to work with asp.net composite control to create a date picker control for asp.net. Problem However to use that control you still require JavaS
Observer Design Pattern in C# [Technical Blog]
Last Updated: 13 Jul 2009
Page Views: 5,381
Rating: 2.50/5
Votes: 4
Popularity: 1.51
Bookmark Count: 24
Licence: The Code Project Open License (CPOL)
codeproject Introduction The Observer design pattern is a relationship between objects so that when one changes its state, all the others are notified accordingly. In other words it defines that an object must be able to notify other objects without making assumptions about what these objects are
Mediator design pattern [Technical Blog]
Last Updated: 20 Jul 2009
Page Views: 4,310
Rating: 3.00/5
Votes: 3
Popularity: 1.43
Bookmark Count: 25
Licence: The Code Project Open License (CPOL)
codeproject Introduction The Mediator pattern is there to enable objects to communicate without knowing each other’s identities.it promotes loose coupling by keeping objects from referring to each other explicitly, and it lets you vary their interaction independently. Explanation Mediator desi
Adapter Design Pattern How to use in Asp.net using C# [Technical Blog]
Last Updated: 14 Aug 2009
Page Views: 5,439
Rating: 2.69/5
Votes: 7
Popularity: 2.27
Bookmark Count: 12
Licence: The Code Project Open License (CPOL)
codeproject What is Adapter Pattern? The Adapter pattern is a structural design pattern which enables a system to use classes whose interfaces don’t quite match its requirements or in other words is used to make a interface which client understands. When to use it? Its quite use
Strategy Design Pattern [Technical Blog]
Last Updated: 14 Aug 2009
Page Views: 6,669
Rating: 4.00/5
Votes: 5
Popularity: 2.80
Bookmark Count: 30
Licence: The Code Project Open License (CPOL)
codeproject Introduction By definition Strategy design pattern allow an object to change its behaviour when its internal state changes. The object will appear to change its class. The Strategy design pattern enables a client to choose which algorithm to use from a family of algorithms
State Design Pattern [Technical Blog]
Last Updated: 14 Aug 2009
Page Views: 3,826
Rating: 4.20/5
Votes: 5
Popularity: 2.94
Bookmark Count: 23
Licence: The Code Project Open License (CPOL)
codeproject In state design pattern, it can change its behaviour by switching to a set of different operations and we achieved this pattern from an object variable changing its subclass, within a hierarchy. Allow an object to alter its behaviour when its internal state changes. The object will app
Singleton Design Pattern in Asp.net using C# [Technical Blog]
Last Updated: 7 Sep 2009
Page Views: 14,695
Rating: 3.24/5
Votes: 9
Popularity: 3.09
Bookmark Count: 25
Licence: The Code Project Open License (CPOL)
codeproject Introduction When we want to make a only one instance of a class and also making sure that there is a global access point to that object then the design pattern we user is called Singleton. The pattern ensures that the class is instantiated only once and that all requests are di