Twitter Bootstrap and ASP.NET MVC - Building a Responsive UI
In this article, we will start with the theory behind Responsive UI and how CSS3 and HTML5 support building of Responsive web UI easily. Next we will see how Media queries work. We will explore a well established boiler plate for Responsive UI design – the Bootstrap, by Twitter. We will also see saw how to replace default ASP. NET styling with Twitter Bootstrap and finally create a Project template that can server as starter MVC projects using Bootstrap. Web DevelopmentDesignASP.NETMVCBootstrap
AJAX File Uploads with jQuery and MVC 3
Recently I was working on a project that required upload of images. I wanted to upload the images AJAX style without refreshing the page and thought jQuery would be a good fit. Using jQuery to post standard forms is extremely simple, but when posting multi-part forms for uploading files it's not so intuitive. This is due to browser security restrictions and sandboxing. Today I'm going to show you how to fake an asynchronous upload without reloading the page and get a result back from the server. Web DevelopmentASP.NETMVCC#
Nested Collection Models in ASP.NET MVC 3
Scenario: We want to create form where I can save information about a person. That person has zero or more phone numbers and zero or more email addresses. The customer would like to edit everything about a person all at once, on a single form. This is a dynamic nested model problem. Web DevelopmentASP.NETMVCC#