Showing results for March 2013 - .NET Blog

Mar 28, 2013
Post comments count0
Post likes count0

Tutorial Series on Model Binding with ASP.NET Web Forms

Tom FitzMacken - MSFT
Tom FitzMacken - MSFT

I have written a tutorial series that shows how to use model binding with ASP.NET Web Forms. You might be familiar with the model binding concept from ASP.NET MVC, but with ASP.NET 4.5, model binding is now available in Web Forms applications. Model binding makes it very easy to create and maintain data-rich web pages. A lo...

ASP.NET
Mar 25, 2013
Post comments count0
Post likes count0

ASP.NET MVC Facebook Birthday App

Rick_Anderson
Rick_Anderson

Tom Dykstra and I have published a really cool tutorial on creating a MVC FB birthday app. You can test the app out by clicking on the FB link below:https://apps.facebook.com/birthdayapp-mvc/The image below shows the birthday app.Yao Huang Lin  is the principal developer for the ASP.NET MVC Facebook library and templates and he also wrote the ...

ASP.NET
Mar 25, 2013
Post comments count0
Post likes count0

Improved search syntax on nuget.org and in NuGet Visual Studio extension

Luan Nguyen
Luan Nguyen

The NuGet team recently deployed a new and very useful search capability on nuget.org, which allows you to narrow your search to a pariticular attribute of a NuGet package. For example, if you want to search for packages which contain 'elmah' within the Id, you type 'id:elmah'. (Note that this will execute a 'contains' search, not an exact match se...

NuGetVisual Studio
Mar 13, 2013
Post comments count0
Post likes count2

“Invoke the method with await”… ugh!

Stephen Toub - MSFT
Stephen Toub - MSFT

I can be a bit sensitive when it comes to language and how concepts are conveyed.  I think it’s important to be accurate, even if not precise, when describing what something is or how to use it, as otherwise the folks to whom you’re communicating can easily form the wrong mental model for that thing.  Having a good mental mode...

.NET Parallel Programming
Mar 12, 2013
Post comments count0
Post likes count0

Deploy a Secure ASP.NET MVC application with OAuth, Membership and SQL Database

Rick_Anderson
Rick_Anderson

I’ve published a tutorial shows you how to build a secure ASP.NET MVC 4 web application that enables users to log in with credentials from Facebook, Yahoo, and Google and deploy the application to Windows Azure. This tutorial assumes that you have no prior experience using Windows Azure. On completing this tutorial, you'll have a secure data-drive...

ASP.NET
Mar 7, 2013
Post comments count0
Post likes count0

ASP.NET Web API: Using Namespaces to Version Web APIs

Mike Wasson [MSFT]
Mike Wasson [MSFT]

In this post, I’ll show how to extend the routing logic in ASP.NET Web API, by creating a custom controller selector. Suppose that you want to version your web API by defining URIs like the following: /api/v1/products/ /api/v2/products/ You might try to make this work by creating two different “Products” controllers, and placing t...

ASP.NET
Mar 6, 2013
Post comments count0
Post likes count0

Visual Studio Web Deployment Tutorial Series Updated for Windows Azure and LocalDB

Tom Dykstra - MSFT
Tom Dykstra - MSFT

This week we published an updated version of the popular 12-part tutorial series that shows how to deploy an ASP.NET web application with SQL Server databases. Here are links to the new tutorials, with notes about what’s in them and what’s new: ...

ASP.NET
Mar 4, 2013
Post comments count0
Post likes count0

Disabling Knockout Intellisense

VKichline
VKichline

Update 4/4/2013: This problem is fixed in Visual Studio 2012 Update 2 (VS2012.2). If the internal JavaScript engine could not figure out the IntelliSense in one second, VS will time out instead of keep evaluating (which in some cases can slow down VS significantly).  If it happens, some KnockoutJS IntelliSense will not be shown in the editor.  Ther...

ASP.NET