Articles : Page 1 of 1

  • Microsoft WebMatrix in Context and Deploying Your First Site

    Microsoft WebMatrix in Context and Deploying Your First Site

    Jul 10
    06

    ScottGu announced Microsoft WebMatrix Beta today. It's a small (15 megs if you have .NET 4, 50megs if you don't) lightweight IDE for making ASP.NET or PHP websites. It has a small embedded file-based SQL Database, and a web-server called IIS Express that's compatible with the full version of IIS. It uses a View Engine called Razor to make Web Pages, and your sites can be later be expanded to use all of ASP.NET MVC. It's a simple syntax that is easy to learn It uses the WebDeploy engi...


  • 2010 Survey Results: What .NET Framework features do you use?

    2010 Survey Results: What .NET Framework features do you use?

    Jan 10
    14

    In October of 2008 I took an informal survey on Twitter. I wanted to get an idea of what features of the .NET Framework people were using. Also, here's the disclaimer. I did this on a whim, it's not scientific, so the margin of error is +/-101%. That said, the results feel intuitively right to me, personally. I put the poll out again last week, adding only Silverlight to the end as an option. I realize I could have added many other subsystems and choices, but I felt it would have made thi...

    • Learn

  • Using ASP.NET MVC with Different Versions of IIS

    Using ASP.NET MVC with Different Versions of IIS

    Oct 09
    11

    In this tutorial, you learn how to use ASP.NET MVC, and URL Routing, with different versions of Internet Information Services. You learn different strategies for using ASP.NET MVC with IIS 7.0 (classic mode), IIS 6.0, and earlier versions of IIS....


  • Learn ASP.NET MVC

    Learn ASP.NET MVC

    Oct 09
    07

    Want to learn ASP.NET MVC but don’t know where to start? This page contains links to videos, tutorials, sample applications, forums, documentation, and books that provide you with everything you need to know to get started building websites using ASP.NET MVC....


  • 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....


  • Understanding Models, Views, and Controllers

    Understanding Models, Views, and Controllers

    Oct 09
    07

    This tutorial provides you with a high-level overview of ASP.NET MVC models, views, and controllers. In other words, it explains the ‘M’, ‘V’, and ‘C’ in ASP.NET MVC. After reading this tutorial, you should understand how the different parts of an ASP.NET MVC application work together. You should also understand how the architecture of an ASP.NET MVC application differs from an ASP.NET Web Forms application or Active Server Pages application....


  • 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