Articles : Page 1 of 2

  • Web Forms Model Binding Part 2: Filtering Data (ASP.NET vNext Series)

    Web Forms Model Binding Part 2: Filtering Data (ASP.NET vNext Series)

    Sep 11
    12

    This is the fourth in a series of blog posts I’m doing on ASP.NET vNext. The next releases of .NET and Visual Studio include a ton of great new features and capabilities. With ASP.NET vNext you’ll see a bunch of really nice improvements with both Web Forms and MVC – as well as in the core ASP.NET base foundation that both are built upon. Today’s post is the second of three posts that talk about the new Model Binding support coming to Web Forms. Model Binding is an extension of the existing...


  • Web Forms Model Binding Part 1: Selecting Data (ASP.NET vNext Series)

    Web Forms Model Binding Part 1: Selecting Data (ASP.NET vNext Series)

    Sep 11
    06

    This is the third in a series of blog posts I’m doing on ASP.NET vNext. The next releases of .NET and Visual Studio include a ton of great new features and capabilities. With ASP.NET vNext you’ll see a bunch of really exciting improvements with both Web Forms and MVC – as well as in the core ASP.NET base foundation that both are built upon. Today’s post is the first of three posts I’ll do over the next week that talk about the new Model Binding support coming to Web Forms. Model Binding is...


  • Web Forms Model Binding Part 1: Selecting Data (ASP.NET vNext Series)

    Web Forms Model Binding Part 1: Selecting Data (ASP.NET vNext Series)

    Sep 11
    06

    This is the third in a series of blog posts I'm doing on ASP.NET vNext. The next releases of .NET and Visual Studio include a ton of great new features and capabilities. With ASP.NET vNext you'll see a bunch of really exciting improvements with both Web Forms and MVC - as well as in the core ASP.NET base foundation that both are built upon. Today's post is the first of three posts I'll do over the next week that talk about the new Model Binding support coming to Web Forms. Model Binding is a...


  • Strongly Typed Data Controls (ASP.NET vNext Series)

    Strongly Typed Data Controls (ASP.NET vNext Series)

    Sep 11
    02

    This is the second in a series of blog posts I’m doing on ASP.NET vNext. The vNext releases of .NET and Visual Studio include a ton of great new features and capabilities. With ASP.NET vNext you’ll see a bunch of really exciting improvements with both Web Forms and MVC – as well as in the core ASP.NET base foundation that both are built upon. Today’s post is the first of a few posts I’ll do that talk about some of the improvements coming to Web Forms. Today’s post covers the new support w...


  • Strongly Typed Data Controls (ASP.NET vNext Series)

    Strongly Typed Data Controls (ASP.NET vNext Series)

    Sep 11
    02

    This is the second in a series of blog posts I'm doing on ASP.NET vNext. The vNext releases of .NET and Visual Studio include a ton of great new features and capabilities. With ASP.NET vNext you'll see a bunch of really exciting improvements with both Web Forms and MVC - as well as in the core ASP.NET base foundation that both are built upon. Today's post is the first of a few posts I'll do that talk about some of the improvements coming to Web Forms. Today's post covers the new support we ...


  • Great Free Video Training on ASP.NET Web Forms and ASP.NET MVC

    Great Free Video Training on ASP.NET Web Forms and ASP.NET MVC

    May 11
    16

    We’ve recently published some great end-to-end ASP.NET video training courses on the http://asp.net web-site. Created by Pluralsight (a great .NET training company), these video courses are available free of charge and provide a great way to learn (or brush-up your knowledge of) ASP.NET Web Forms 4 and ASP.NET MVC 3. Each course is taught by a single trainer, and provides a nice end-to-end curriculum (from basic concepts to working with the new Entity Framework “code first” model to securit...


  • ASP.NET MVC 3 and the @helper syntax within Razor

    ASP.NET MVC 3 and the @helper syntax within Razor

    May 11
    13

    ASP.NET MVC 3 supports a new view-engine option called “Razor” (in addition to continuing to support/enhance the existing .aspx view engine). Razor minimizes the number of characters and keystrokes required when writing a view template, and enables a fast, fluid coding workflow. Unlike most template syntaxes, with Razor you do not need to interrupt your coding to explicitly denote the start and end of server blocks within your HTML. The Razor parser is smart enough to infer this from your co...


  • EF Code First and Data Scaffolding with the ASP.NET MVC 3 Tools Update

    EF Code First and Data Scaffolding with the ASP.NET MVC 3 Tools Update

    May 11
    06

    Earlier this week I blogged about the new ASP.NET MVC 3 Tools Update that we shipped last month. In today’s blog post I’m going to go into more detail about two of the cool new features it brings: Built-in support for EF 4.1 (which includes the new EF “code-first” support) Built-in data scaffolding support within Visual Studio (which enables you to rapidly create data-driven sites) These two features provide a really sweet, and extremely powerful, way to work with data and build d...


  • VS 2010 SP1 (Beta) and IIS Express

    VS 2010 SP1 (Beta) and IIS Express

    Jan 11
    04

    Last month we released the VS 2010 Service Pack 1 (SP1) Beta. You can learn more about the VS 2010 SP1 Beta from Jason Zander’s two blog posts about it, and from Scott Hanselman’s blog post that covers some of the new capabilities enabled with it. You can download and install the VS 2010 SP1 Beta here. IIS Express Earlier this summer I blogged about IIS Express. IIS Express is a free version of IIS 7.5 that is optimized for developer scenarios. We think it combines the ease of use of the...


  • ASP.NET MVC 3: Implicit and Explicit code nuggets with Razor

    ASP.NET MVC 3: Implicit and Explicit code nuggets with Razor

    Dec 10
    17

    This is another in a series of posts I’m doing that cover some of the new ASP.NET MVC 3 features: New @model keyword in Razor (Oct 19th) Layouts with Razor (Oct 22nd) Server-Side Comments with Razor (Nov 12th) Razor’s @: and <text> syntax (Dec 15th) Implicit and Explicit code nuggets with Razor (today) In today’s post I’m going to discuss how Razor enables you to both implicitly and explicitly define code nuggets within your view templates, and walkthrough some code examples of ...