Showing results for March 2013 - .NET Blog

Mar 28, 2013
0
0

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
0
0

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 12, 2013
0
0

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
0
0

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 4, 2013
0
0

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