ASP.NET MVC Display an HTML Table with Checkboxes to Select Row Items
Image by Elif Ayiter | Some Rights Reserved Often we need to create a table for our ASP.NET MVC web application with a checkbox next to each row, in order to allow the user to select one or more items from our list for additional...
ASP.NET MVC: Add a Select All Checkbox to a Checklist Table Using JQuery
Often, we find we need to present our users with a list of items in a table or list, with checkboxes such that the user can select one or more items from the list for additional processing. Most of the time, the user will either...
ASP.NET MVC: Show Busy Indicator on Form Submit using JQuery and Ajax
Image by Martin Abegglen | Some Rights Reserved As we all know, users are impatient. We also know that if we don’t tell them our application is “doing something” they tend to do silly things like click the mouse...
C# – Generate and Deliver PDF Files On-Demand from a Template Using iTextSharp
Image by Curtis Ellis | Some Rights Reserved Often we need to provide a mechanism for users of our site to download content in the form of PDF files. While this in itself is not technically challenging, I recently had a need to...
Extending Identity Accounts and Implementing Role-Based Authentication in ASP.NET MVC 5
Image by: Elif Ayiter | Some Rights Reserved In a previous post, we took a quick look at extending Identity Accounts in the context of the new Identity system under ASP.NET MVC 5. We also examined the basics of Entity Framework...
Keep Nuget Packages Out of Source Control with Nuget Package Manager Restore
Image by thebarrowboy | Some Rights Reserved Nuget is cool. What is not cool is when you push a project to source control and include a ton of installed packages, bulking up your repo with stuff that could be easily pulled in via...
ASP.NET MVC: Configuring ASP.NET MVC 4 Membership with a SQL CE Database
Image by Infocux Technologies | Some Rights Reserved Recently I needed to set up an ASP.NET MVC project to work with a SQL CE database. I also needed to use SQL CE as the backing store for the ASP.NET Membership feature. This was...
Customizing Routes in ASP.NET MVC
Image by ~uminotorino Some rights reserved Routing is one of the primary aspects of the MVC framework which makes MVC what it is. While that is possibly over-simplifying, the routing framework is where the MVC philosophy of...
Routing Basics in ASP.NET Web API
Image by Ron Reiring As noted in Routing Basics in ASP.NET MVC, routing in ASP.NET Web API is functionally very similar to the standard MVC routing. Understanding the MVC routing model will provide most of what you need to know...
Routing Basics in ASP.NET MVC
Image by Andrew Morton When getting started with ASP.NET MVC and/or the ASP.NET Web API, it can be overwhelming trying to figure out how it all works. These frameworks offer powerful features, and abstract away a good deal of...