Archives
-
ASP.NET MVC 2 Preview 1 Released
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
-
Introduction to Test-Driven Development with ASP.NET MVC
One of the greatest advantages of ASP.NET MVC is the support of testability, which enables to 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 parts of the application. For developing testable applications, the support of developer frameworks is very important and the frameworks should be designed to facilitate building testable applications. One of the design goals of ASP.NET MVC was testability so that you can easily develop testable application with the ASP.NET MVC framework. In this post, I will give an introduction to Test-Driven Development (TDD) with ASP.NET MVC using NUnit unit test framework.
-
T4 Template for generate Table Script from XSD
The below T4 template will generate Create Table script from a XSD file. The Template will create a dataset from a XSD file and generate create table script from the dataset.