Using WCF Data Services with WinRT

In this post I will walk through the steps of creating an OData / WCF Data Service and consume it from a Windows 8 Metro Style XAML based application.  I will use the following technology stack: SQL Server Entity Framework Code First WCF Data Service WinRT / Metro Style Application To get started you have …

Continue reading ‘Using WCF Data Services with WinRT’ »

Code Mastery San Francisco

Join us for Code Mastery San Francisco on Friday, June 29, 2012 at the Golden Gate Rooms at Microsoft’s Northern California Facility. Code Mastery delivers free high-quality technical content. As an added bonus, this event includes Microsoft PDC 2010 content direct from Microsoft. Code Mastery events are designed to present you with meaningful technical content …

Continue reading ‘Code Mastery San Francisco’ »

Atlanta Code Camp 2012 Presentations

Atlanta Code Camp too place yesterday, May 19 at Southern Polytechnic campus.  I just want to post my presentations here as promised.  I did two talks as you can see below. Entity Framework Code First – Beyond the Basics This session cover scenarios beyond the basics of EF Code First usage. Topics such as creation …

Continue reading ‘Atlanta Code Camp 2012 Presentations’ »

Dealing with Direct Object References in ASP MVC

If you are not familiar with OWASP site, I highly encourage you take a look at it.  I think everyone can learn something by reading this site.  More specifically, I wanted to concentrate on one of the top 10 mistakes, Insecure Direct Object References. If you take a look at most of ASP.NET MVC sample …

Continue reading ‘Dealing with Direct Object References in ASP MVC’ »

Validation Inside jQuery Accordion

I recently uncovered a little issue with using entry controls that use unobtrusive JavaScript validation inside jQuery accordion control.  When an error is shown, the accordion does not resize as it should, thus some controls fall off the accordion surface.  I got some feedback on  ASP.NET forum from Bruce, and wrote a little function that …

Continue reading ‘Validation Inside jQuery Accordion’ »

Windows 8 Metro Applications and the Azure (Cont.)

As I mentioned before, I am going to write the last post about integrating Windows 8 Metro applications with Azure. First of, let’s take a look at securing our service with Forms Authentication.  I blogged about that as well, and the only change is that I am going to use REST for authentication service.  Here …

Continue reading ‘Windows 8 Metro Applications and the Azure (Cont.)’ »

Validating Dependent Fields in ASP.NET MVC

In this post I wanted to describe a solution to a specific problem I recently encountered.  The problem is as following.  I have a class with a set of dependent properties, such as start and end date or minimum / maximum numbers.  I want to implement both client and server side validation in an MVC …

Continue reading ‘Validating Dependent Fields in ASP.NET MVC’ »

Windows 8 Metro Applications and the Azure

I wanted to start a short series of posts, describing my experience in building simple Windows 8 Metro application using XAML, C#, and a service in Azure.  You can find my second post at http://dotnetspeak.com/index.php/2012/05/windows-8-metro-applications-and-the-azure-cont/ The application is very simple, it is a going to be a famous quote app, where the user can get …

Continue reading ‘Windows 8 Metro Applications and the Azure’ »