ASP.NET MVC 2 futures assembly provides a HTML helper method Serialize that can be use for persisting your model object. The Serialize helper method will serialize the model object and will persist it in a hidden field in the HTML form. The Serialize...
A number of folks have asked me how to pass query string values along with a route parameter id. They are looking onto send a url like http://MySite/Home/Edit/5?name=shiju. The below is the routing configuration routes.MapRoute( "Default" ,...
In my last post , I have explained the use of View Model objects in ASP.NET MVC applications. In this post, let me discuss on view model objects by using the C# 4 dynamic and ExpandoObject. I do not recommending to use dynamic keyword for creating View...
In real world ASP.NET MVC applications, we have to use model objects specially designed for our ASP.NET MVC views. Domain objects are designed for the needs for domain model and it is representing the domain of our applications. On the other hand, View...
I did a presentation titled " Building Apps with ASP.NET MVC 2 and Entity Framework" at Microsoft Community Tech Days . I have given a brief indroduction to ASP.NET MVC and demonstrated how to building applications with ASP.NET MVC 2 and Entity...
AutoMapper is my favorite .Net open source project of the year 2009. AutoMapper is a convention based object to object mapper framework developed by Jimmy Bogard . Jimmy did an awesome job for AutoMapper and I hope that more enhancements will be come...
SQL Azure Migration Wizard (SQLAzureMW) is a tool that will help you migrate your SQL Server 2005 / 2008 database to SQL Azure. Using SQLAzureMW, you can choose an existing database and generate the scripts and deploy the database along with data into...
ASP.NET MVC 2 ASP.NET MVC is the natural way to program ASP.NET web applications and it is really a breathing of fresh air. I hope that ASP.NET developers will widely adopt ASP.NET MVC along with the new Microsoft Visual Studio 2010 and .NET Framework...
Microsoft has announced the beta release of ASP.NET MVC 2. Visit Phill Haack's blog post for more details. The download link available from here .
Finally Windows 7 is done with and will be available for MSDN and TechNet subscribers on Thursday 6th July. Waiting to grab my copy and then move my development environment to Windows 7. Also waiting to see what the final version will look like and will...
Microsoft has released Preview 1 version of ASP.NET MVC 2. You can download ASP.NET MVC 2 Preview 1 from here . The new features are Templated Helpers, Areas and Support for Data Annotations. For more details visit the following links ScottGu on ASP.NET...
One of the greatest advantages of ASP.NET MVC is the support of testability, which enables to develop Test-Driven Development (TDD) in an easy manner. A testable application should be developed in a loosely coupled manner so that you can test the independent...
Hi, Whenever you go to online help by clicking "F1" for a specific Silverlight API in the Visual Studio 2008, you will end up seeing a Silverlight3 Beta content. This can be clearly identified by the following two aspects. 1. Under the search...
Dear all, The offical release of Silverlight3 happened on 10th July 2009. I had already conveyed about the new features that are introduced in Silverlight3 in my Presentation at Community Tech days Jun 2009 as well as in my previous post in this my blog...