Articles : Page 1 of 1
- Filter:
- MvcContrib
- OpenSource
-
MvcExtensions – Bootstrapping
May 1012When you create a new ASP.NET MVC application you will find that the global.asax contains the following lines: namespace MvcApplication1 { // Note: For instructions on enabling IIS6 or IIS7 classic mode, // visit http://go.microsoft.com/?LinkId=9394801 public class MvcApplication : System.Web.HttpApplication { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", /...
-
ASP.Net MVC Portable Areas via MvcContrib
Nov 0901This is a multi post series on ASP.Net MVC Portable Areas Part 1 Introduction Part 2 Sample Portable Area Part 3 Usage of a Portable Area What is a Portable Area? A Portable Area is a set of reusable multi page functionality can be dropped into an application to provide rich functionality without having to custom build functionality that is literally the same in every application. This could be considered a plug-in or add-in type of functionality. The portable portion of this app...
- 1

