ASP.NET MVC is a highly extensible framework that allows you to use different view engines with ASP.NET MVC. ASP.NET MVC Preview 1 comes with two bult-in view engines: ASPX and Razor. When you create a new ASP.NET MVC 3 project, you can see two project...
The ASP.NET team has released the first preview version of ASP.NET MVC 3. You can download the ASP.NET MVC 3 Preview 1 from here . The following are the summary of new features in the ASP.NET MVC 3 Preview 1. New Razor View Engine Visual Studio Add View...
The new WebMatrix beta is providing set of HTML helpers that can be use for common web site tasks. The below ASP.NET page within the WebMatrix is using some HTML helpers for integrating social networking web site features. <!DOCTYPE html> <html>...
Microsoft has announced the first beta release of Microsoft WebMatrix which is a lightweight development tool for web developers. WebMatrix can be installed side-by-side with Visual Studio 2010 and Visual Web Developer 2010 Express. The most interesting...
I would like to inform you that I’ve been awarded as Microsoft Most Valuable Professional (Microsoft MVP) for ASP.NET. This is a very proud moment of my professional life. I believe that this award is great honor to the ASP.NET MVC community. I have been...
I will be speaking about ASP.NET MVC 2 at the DevCon 2010 organized by Kerala Microsoft User Group (K-Mug) . The DevCon 2010 event will be conducted in Techopark , Trivandrum, India on 3rd and 4th July, 2010. My ASP.NET MVC 2 session will be introducing...
By default RavenDB's Id would be sperated by "/". Let's say that we have a category object, the Ids would be like "categories/1". This will make problems when working with ASP.NET MVC's route rule. For a route category...
In my previous post , we have discussed on how to work with RavenDB document database in an ASP.NET MVC application. We have setup RavenDB for our ASP.NET MVC application and did basic CRUD operations against a simple domain entity. In this post, let...
A while back, I have blogged NoSQL with MongoDB, NoRM and ASP.NET MVC Part 1 and Part 2 on how to use MongoDB with an ASP.NET MVC application. The NoSQL movement is getting big attention and RavenDB is the latest addition to the NoSQL and document database...
Hi, Was keeping myself busy in digging deep into VSTS 2010 and TFS 2010 Features to implement the same in my organisation. It was quite interesting and thought this is the right time for me start share things I have gained in real time implementation...
In my previous post Dependency Injection in ASP.NET MVC NerdDinner App using Ninject , we did dependency injection in NerdDinner application using Ninject. In this post, I demonstrate how to apply Dependency Injection in ASP.NET MVC NerdDinner App using...
Microsoft's dependency injection framework Unity Application Block (Unity) has reached version 2.0. The release available on Codeplex at http://unity.codeplex.com / Unity 2.0 Change Log Release Notes - Unity 2 for Desktop Release Notes - Unity 2 for...
In this post, I am applying Dependency Injection to the NerdDinner application using Ninject. The controllers of NerdDinner application have Dependency Injection enabled constructors. So we can apply Dependency Injection through constructor without change...
In my earlier post ViewModel patten and AutoMapper in ASP.NET MVC application , We have discussed the need for View Model objects and how to map values between View Model objects and Domain model objects using AutoMapper. ASP.NET MVC futures assembly...
In my last post , I have given an introduction to MongoDB and NoRM using an ASP.NET MVC demo app. I have updated the demo ASP.NET MVC app and a created a new drop at codeplex. You can download the demo at http://mongomvc.codeplex.com / In my last post...