Send Email to Selected Recipients from your ASP.NET MVC Web Application Part I
Image by Sergio Quesada | Some Rights Reserved I recently had to throw together an application for work allow users to send email to recipients selected from a list. The application in question is used to manage attendees at...
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...
Is Duck Typing a Type System, or a Way of Thinking?
Image by Federico Reiven | Some Rights Reserved Ok, so there is what might be my first-ever “link bait” title. Especially dangerous because I am about to jump into a discussion propagated by some well-known,...
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# SMTP Configuration for Outlook.Com SMTP Host
Image by JASE Group LLC | Some Rights Reserved If you want to send Email programmatically using your Outlook.com or Gmail account as the SMTP host, there are a few things to pay attention to in order to get it all working. Using...
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...
Configuring Db Connection and Code-First Migration for Identity Accounts in ASP.NET MVC 5 and Visual Studio 2013
Image by Wonderlane | Some Rights Reserved The recent release of Visual Studio 2013 and ASP.NET MVC 5 brought significant changes to the Accounts management system (formerly ASP.NET Forms Membership). Also, there have been some...