dedicated to write powerful yet elegant software by using minimum code and maximizing the benefits for all our clients.

Typically, new developers to ASP.Net MVC get stumped with having to deal with one important fact: Page.ResolveUrl(...); is missing!!!

Don't worry or fret - the new way of doing this is:Url.Content(...);

Some sample usage is as below:

Resolving images:

<img src="<%= Url.Content("~/content/images/myImage.gif") %>" alt="My image" title="My image" />

Resolving JavaScript files:

<script language="javascript" type="text\javascript" src="<%= Url.Content("~/scripts/myscript.js") %>"></script>

Simple as that.

When you refer stylesheet files in your *.Master page, this link is directly reference without needing to use the Url helper as shown above.

So, you can continue refering stylesheet files like:

<link rel="stylesheet" type="text\css" media="screen" href="../content/site.css" />

The MVC framework will resolve the path correctly at run-time.

Hmm.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Category: Development | ASP.Net MVC

ASP.Net MVC & jQuery - utopia!!! by Sunny 03/Jun/2009 23:21:00

I finally got the chance to start working on ASP.Net MVC with jQuery & Linq.

My last project was based on the now "old" .Net 2.0  & we went with a complete MS technology stack including their version of AJAX. Adding third party controls to the mix didnot help & only added to the overall complexity of the system. 

MS Ajax - is surely past its sell by date.

When this library was first put out, I was truly excited & hoped it would be all it promised to be. For sometime, I really enjoyed it. But then once I got jQuery-ed, its bye-bye Ms. Ajax. Inspite of all her glitz & glamour, I lost my heart to the pure simplicity of jQuery. 

I have never been a big believer of third party controls - regardless of the claims of the component supporters.

True they save you a load of upfront effort & look cool. Unfortunately, in my experience, the project starts degrading in performance, maintainability & testability the minute a third party control starts appearing in your codebase.

Needless to say, after all that - MVC, jQuery & Linq - utopia!!!

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , ,

Category: Development | Tools

Design Patterns - A deep dive 3 by Sunny 06/Jul/2008 23:14:00

Welcome to a series of articles on design patterns. 

In the previous articles, we have covered the following areas:

Part 1 - looks at design patterns at a high level to understand what they can/can't do.

Part 2 - looks at the basic categorization of the patterns & a one-line definition of each pattern under that category.

The previous two parts have been a very high level overview of design patterns. The articles henceforth will concentrate on a single pattern & hopes to provide an insight  regarding coding the pattern, uses of that pattern & some common gotcha's while using that pattern. 

This article (Part 3) looks at one of the simplest and most commonly used type of Creational Design Pattern called as the Singleton Design Pattern. 

What is a Singleton Pattern?

An instance of a class is considered Singleton if it meets the following criteria:

  1. There is only one instance of the class during the lifetime of that application
  2. Any attempt to instantiate another instance of this class would return the previously created instance
  3. The constructor of this class is either private or protected only.

Why is Singleton Pattern classified as a Creational Pattern?

Creation design patterns are a category of design patterns in which there is some special process in the "creation" of an instance of a class.

In case of Singleton pattern, the constructor of the class is not accessible & so an instance of that class cannot be created. The class will internally create an instance of itself & return a handle to this instance each time.

Due to this special behavior of the constructor, this pattern is classified as a Creational Pattern.

Lets talk code

Consider a simple class called Singleton which implements this pattern as shown:
public class Singleton{
 
    private static Singleton m_INSTANCE = null;
 
    private Singleton(){}
 
    public static Singleton GetInstance(){
 
        if(m_INSTANCE == null)
            m_INSTANCE = new Singleton();
 
        return m_INSTANCE;
    }
}

The interesting features of this class are: the constructor, the method GetInstance() and the private static Singleton type field m_INSTANCE, which we will get into more deeply in the following sections.

The constructor

The constructor of the Singleton class has been declared private. You could also declare it protected. Any other modifier like public or internal would allow a possibility to create an instance of this class & would defeat the purpose of a Singleton.

private Singleton(){}

The main concept to understand here is that we are restricting creating the instance of this class by setting the access modifier to the constructor. So, now no consumer of the class can create an instance of it. The only way we can get get an instance is to call the GetInstance() method & use that instance.

The field m_INSTANCE 

The field m_INSTANCE is a private static field which will hold the object of the Singleton class.

private static Singleton m_INSTANCE = null;

Since this field is lazy-initialized & the GetInstance() method always returns this object, we have been able to control the creation of instances for the Singleton class.

The GetInstance() method

The GetInstance() method is the only way we would be able to get an instance of the Singleton class.

public static Singleton GetInstance(){
 
    if(m_INSTANCE == null)
        m_INSTANCE = new Singleton();
 
    return m_INSTANCE;
}

In the class shown above, we note that we are lazy-initializing the private static Singleton type field m_INSTANCE. This code ensures that there would be only one instance of the type which will be created the first time GetInstance() method is called. For any other call after this, the object stored in m_INSTANCE will be returned without creating a new instance.

The point to note about the GetInstance() method is that it has been declared public static with a return type of Singleton. As mentioned previously, since the constructor is private/protected, we will not be able to create an instance of the class & so we will need this static method to get the instance.

Uses of Singleton Pattern

The Singleton pattern is extremely simple to implement & use. Typically, items which need to be initialized only once during the application life implement this pattern. Some of the common examples of such items can be: User Preferences & Settings, Thread/Connection pools, context objects, handle to Application Services (logging, data access, error handling etc.)

In short: "Singletons are most appropriate for services that donot change change their nature based on their invocation context" (c2.com, 2008)

The Bells & Whistles

In this section, we will look at some interesting items which need to be kept in mind while using the Singleton Pattern which might actually make it evil:

  1. Singleton's v/s Global Variables - IMHO while Singleton's are a classes where we are restricting creating mutiple instances, global variables are more like "declared instances". Given this mindset, I would expect a Global Variable to be changed during the lifetime of an application based on certain conditions in the application, while a Singleton would remain in the same state. One more difference I note is that Global Variables are truly global to the application, but a Singleton could be accessible to a part of the application/thread.
  2. Singleton's & performance - One of the most important decisions while using a Singleton is when do we actually instantiate the members of the class & how expensive is it to keep this instance in memory? In the code sample shown previously, we had lazy initialized the m_INSTANCE member which was sufficient for that case. But given a more complex or expensive resource to create, we need to re-look at our design & check if it makes sense in having a Singleton or use some other mechanism.
  3. Singleton's & state - One of the core concepts of Singleton is that it maintain its state as long as the application lasts. One of the drawbacks of this is that to load a different state (For example: running Unit Tests), we need to expose methods to set the new state, which quite defeats the idea that Singleton's retain their state. The other alternative is to reload the application with a different state for the Singleton instance, but then is this acceptable for a Unit Test?

Wrap up

In this article we have seen how a Singleton class can be created, what are its main elements. I would love to hear your thoughts, ideas & experiences using the Singleton Pattern.

In the next article, we will look at another Creational Design Pattern.

Currently rated 4.0 by 1 people

  • Currently 4/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

Category: Design Patterns | Development

Design Patterns - A deep dive 2 by Sunny 30/Jun/2008 21:47:00

Hey there! Welcome to second part of a series of articles on design patterns.

In case you tuned in late, the previous article looked at what design patterns could/could not do & some reasons why we need to use them. In this article, we look at the evolution of design patterns, categorizing the design patterns & their definitions, and a list of all the different patterns out there.

Once upon a time...

Once upon a time in a land far away there lived an achitect (who designs & builds buildings for a living, duh!) by name Christopher Alexander who produced a pattern language as: an architectural concept to empower any human being to design & build at any scale

Kent Beck & Ward Cunningham began experimenting with these ideas to apply them to software. They presented using pattern languages for object-oriented programs at the OOPSLA & the rest was history.

Design patterns were here to stay with important contrbutions from THE Gang of Four & THE Martin Fowler to name a few experts in this area of work.

Moral of the story:
Its cool to be an "architect" in a software company, with having nothing to do designing & building buildings!

The Classic Categorization of design patterns

Creational These set of patterns deal with special mechanisms to handle the creation of objects
Abstract Factory used to create an instance of several families of classes
Factory used to create an instance of several derived classes
Builder
seperates object construction from its representation
Lazy initialization delays the creation of the object till the first time it is needed
Object Pool
maintains & releases a pool of resources by recycling objects
Prototype
used when the type of object to create is determined by the prototypical instance, which is cloned to produce new objects
Singleton
restricts to hanving only one instance of the class
Structural These set of patterns identify a simple way to realize the relationship between entities
Adapter provides a mechanism to match the interfaces of two classes
Bridge
seperates an abstraction (Interface) from its implementation (class) so that both can vary independantly
Composite
compose objects into tree structures to represent part-whole heirarchies
Decorator
used to add new/additional functionality to an existing class dynamically
Facade
used to provide a single interface to a larger set of interfaces by hiding that large set
Flyweight
is an object  that minimizes memory occupation by sharing as much data as possible with other similar objects
Proxy
is an object which represent another object that is expensive to duplicate
Behavioral These set of patterns identify common communication patterns between objects
Chain of responsibility a way of passing a request between a chain of objects
Command
encapsulate a command request as an object
Interpreter
a way to include language elements in a program
Iterator
sequentially access the elements of a collection
Mediator defines simplified communication between classes
Memento
capture and restore an object's internal state
Observer
a way of notifying change to a number of classes
State
alter an object's behavior when its state changes
Strategy
encapsulates an algorithm inside a class
Template defer the exact steps of an algorithm to a subclass
Visitor
defines a new operation to a class without change

Source: dofactory.com

Domain-specific patterns

Besides the classic categories of design patterns as shown above, there is a very huge list of patterns, some of which are domain-specific. Some examples of such patterns are UI design patterns, concurrency patterns, AJAX patterns, Web development pattern etc. which focus on solving software design issues for that domain.

Not a silver bullet

There have been numerous crticisms of design patterns here and here and an interesting defense too! As pointed out in the previous article, design pattern is no silver bullet. It is just a framework to get our mind around to understanding a problem. 

So, if this framework helps in solving a design problem, that is cool; if not, that is cool too - is my take on this subject. 

Lotsa text, wassup next?

We are done with understanding some history of design patterns, their categorization & some definitions of what each pattern means.  

The next article promises to be more fun as we will start looking at the actual implementation of the patterns in terms of code, identify a few real-life examples where we can use it & hopefully get to hear your experiences & gotcha's with the pattern.

So stay tuned, code coming up!

Currently rated 2.0 by 2 people

  • Currently 2/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

Category: Design Patterns | Development