Silverlight 4 Training Kit from Microsoft
Silverlight 4 Training Kit The Silverlight 4 Training Course includes hands-on-labs, a video and a whitepaper designed to help you learn about the new features in Silverlight 4 focusing on…
DATENAME() function in SQ Server
SQL has a DateName function, however it takes a datetime as a parameter, not a number Usage is as follows DATENAME(month,date) returns Month Name Sample Query SELECT DATENAME(month, GETDATE()) AS…
Design Patterns – ‘Abstract Factory’
Provide an interface for creating families of related or dependent objects without specifying their concrete classes. An AbstractFactory is a class that exists to create instances of another class. Described…
ASP.NET MVC 2 – Areas Support
ASP.NET MVC 2 introduces the concept of Areas. Areas provide a means of dividing a large web application into multiple projects, each of which can be developed in relative isolation.…
ASP.NET MVC 2
ASP.NET MVC 2 is the next significant update of ASP.NET MVC. It is a compatible update to ASP.NET MVC 1 – so all the knowledge, skills, code, and extensions you…
ASP.NET MVC 2: Model Validation by ScottGu
Today i came across an article by Scott Guthrie of Microsoft. It’s an excellent article on how we can do model validation with ASP.NET MVC 2.0 which is in release…