Browse by Tags
All Tags »
ASP.Net Routing »
ASP.Net MVC (
RSS)
Download MIX09 Sessions and Watch Offline personally prefer watching sessions regardless of my Internet connection status, so I decided to download MIX09 sessions and watch offline . I collected the list of available sessions from MIX 09 , and they are easy to download. I personally use Free Download Manager for simultaneous efficient downloads - you can try it yourself. Just select all the text in this post, right click and select “Download Selected with Free Download Manager”. Note: Full details...
MIX09 Bits Available on Microsoft Download Center MIX09 will be officially opened today with a keynote full of announcements about new releases and technologies. It seems that the bits are already available via Microsoft’s Download Center. This post will list all the latest bits released during this happy week of technology. ASP.NET MVC 1.0 ASP.NET MVC 1.0 provides a new Model-View-Controller (MVC) framework on top of the existing ASP.NET 3.5 runtime. Microsoft® Silverlight™ 3 Software Development...
New Release for Oxite: An ASP.Net MVC Sample Application Oxite is a sample ASP.Net MVC application , that provides guidance, extensions and best practices for building ASP .Net MVC applications . The famous application built using Oxite is MIX Online . The new release contains architecture improvements and new features: New Model, Services and Repositories Dependency Injection (Routes, Controllers, Services, Repositories, etc) ActionFilter Registry Better test coverage New validation class added...
Create a Strongly Typed CRUD UI With ASP.Net MVC RC In this post I will show the tooling enhancements in ASP.Net MVC that lets you build CRUD ( List, Details, Create and Edit ) actions very fast. With a little amount of code we can create a good starting point for building a data entry application using ASP.Net MVC . 1. Prepare the database. In this sample I am using the Leasing database, that contains 3 tables. Download the schema and create the database. 2. Create a new ASP.Net MVC Application...
Just Released: Source Code for ASP.Net MVC 1.0 RC After yesterday’s news that ASP.Net MVC 1.0 RC is available, now comes this. You can download the Full Source code of ASP.Net MVC 1.0 RC from here . Enjoy!
ASP.Net MVC Release Candidate is Available Scott Guthrie has just announced that the ASP.NET MVC 1.0 Release Candidate is out. Few of the highlights of this release: Visual Studio Tooling Improvements Add Controller Command Add View Command Adding and Customizing Scaffold Templates Go To Controller / Go To View MSBuild Task for Compiling Views View Refactoring Support View Improvements Views without Code-Behind Files Model Property Setting the Title Strongly Typed HTML/AJAX Helpers Form Post Improvements...
ASP.Net MVC Route Constraints ASP.Net MVC has a powerful Routing Engine that allows mapping between URL Routes and Controller Actions. The default route that is created with an empty ASP.Net MVC application is: {controller}/{action}/{id} But, according to application requirements, other routes can be used, with parameters not necessarily of type string and int, and may require certain constraints to take place. For example, my previous post about Anatomy of an ASP.Net MVC Application can be found...