Showing results for November 2012 - .NET Blog

Nov 30, 2012
0
0

Asynchronous Programming for Windows Store Apps: .NET is up to the Task

Brandon Bray
Brandon Bray

Programming with async and await is the driving force behind delivering “fast and fluid” user experiences. Compiler diagnostics for async APIs guide developers towards best practices – it’s a wonderful example of platform and tooling working together. Since the Windows Runtime uses a slightly different implementation for async programming than ....

.NET
Nov 30, 2012
0
0

Model Binding Fundamentals

pranav rastogi
pranav rastogi

In the previous post we looked at an overview of what is Model Binding and the benefits it brings in for WebForms developers. In this post we will look at the basic fundamentals and how the Model Binding system works with controls. Data Binding with Model Binding Uptil ASP.NET v4.0, data binding in controls happened with data bound controls such as...

ASP.NET
Nov 23, 2012
0
0

ASP.NET Web API and HTTP Byte Range Support

Henrik F Nielsen
Henrik F Nielsen

Range requests is the ability in HTTP to request a part of a document based on one or more ranges. This can be used in scenarios where the client wants to recover from interrupted data transfers as a result of canceled requests or dropped connections. It can also be used in scenarios where a client requests only a subset of a larger representation,...

ASP.NET
Nov 20, 2012
0
0

Building Windows Store Apps with .NET

Brandon Bray
Brandon Bray

For .NET developers, this is the best time to build client apps. Never before have the Windows APIs been so easy to use from C# or Visual Basic without wrapping them with custom libraries. So far, we’ve seen some amazing apps in the Windows Store built using C#. Richard Lander, program manager for the CLR and frequent contributor to this blog, p...

.NET
Nov 20, 2012
0
0

Web Publish Updates with Windows Azure SDK 1.8

hoowhatwen
hoowhatwen

We recently released new updates to the publishing experience in Visual Studio 2012 and Visual Studio 2010 as part of the Windows Azure SDK for .NET 1.8 release.  The main new features include web site project (WSP) publishing using the same new publishing workflow as web application projects (WAPs), precompile options for both WAP and WSP, pe...

ASP.NET
Nov 19, 2012
3
0

All about

levibroderick
levibroderick

Background – on quirks and compatibility The .NET Framework (including ASP.NET) strives to maintain near-100% compatibility when an existing framework is updated on a machine. We try to ensure as much as possible that if an application was developed and deployed against .NET Framework 4, it will just continue to work on 4.5. This normally means ke...

ASP.NET
Nov 16, 2012
0
0

Capturing Unhandled Exceptions in ASP.NET Web API’s with ELMAH

Mark Berryman
Mark Berryman

I'm a fan of using ELMAH to track unhandled exceptions in my ASP.NET applications. If you haven't tried ELMAH, you should definitely check it out. There's even an ELMAH NuGet package so it's trivial to install. Now that I'm getting my feet wet with Web API, I'd like to have any Web API unhandled exceptions be directed to ELMAH as well so that I ...

ASP.NET
Nov 15, 2012
0
0

ASP.NET WebForms Model Binding – Overview

pranav rastogi
pranav rastogi

This is the first post in the part of series around Model Binding. In this post I will introduce Model Binding integration in ASP.NET WebForms 4.5 while focusing on history, benefits, principles and the integration of Model Binding. In the upcoming posts, I will be going into the details about the features that are supported by this system.Upd...

ASP.NET
Nov 13, 2012
0
0

Scaling cloud apps with the .NET Framework 4.5

Brandon Bray
Brandon Bray

The .NET Framework 4.5 is now available on Windows Azure. Thank you to everyone cheering for this moment. We’re just starting to see the possibilities that a rich developer framework like the .NET Framework and the cloud can have together. Richard Lander, a program manager for the Common Language Runtime, explains a few best practices that can r...

.NET