Articles : Page 1 of 1

  • ASP.NET MVC Overview

    ASP.NET MVC Overview

    Oct 09
    07

    The Model-View-Controller (MVC) architectural pattern separates an application into three main components: the model, the view, and the controller. The ASP.NET MVC framework provides an alternative to the ASP.NET Web Forms pattern for creating MVC-based Web applications. The ASP.NET MVC framework is a lightweight, highly testable presentation framework that (as with Web Forms-based applications) is integrated with existing ASP.NET features, such as master pages and membership-based authentication. The MVC framework is defined in the System.Web.Mvc namespace and is a fundamental, supported part of the System.Web namespace....


  • Understanding the ASP.NET MVC Execution Process

    Understanding the ASP.NET MVC Execution Process

    Oct 09
    07

    Learn how the ASP.NET MVC framework processes a browser request step-by-step....


  • ASP.NET MVC Routing Overview

    ASP.NET MVC Routing Overview

    Oct 09
    07

    In this tutorial, you are introduced to an important feature of every ASP.NET MVC application called ASP.NET Routing. The ASP.NET Routing module is responsible for mapping incoming browser requests to particular MVC controller actions. By the end of this tutorial, you will understand how the standard route table maps requests to controller actions....


  • Creating Custom Routes

    Creating Custom Routes

    Oct 09
    07

    In this tutorial, you learn how to add a custom route to an ASP.NET MVC application. You learn how to modify the default route table in the Global.asax file with a custom route. For many simple ASP.NET MVC applications, the default route table will work just fine. However, you might discover that you have specialized routing needs. In that case, you can create a custom route....


  • Creating a Route Constraint

    Creating a Route Constraint

    Oct 09
    07

    n this tutorial, Stephen Walther demonstrates how you can control how browser requests match routes by creating route constraints with regular expressions....


  • Creating a Custom Route Constraint

    Creating a Custom Route Constraint

    Oct 09
    07

    Stephen Walther demonstrates how you can create a custom route constraint. We implement a simple custom constraint that prevents a route from being matched when a browser request is made from a remote computer....



  • 1