Beautiful and simple implementation of two Select Lists (HTML Select Tags) to select multiple items from one ListBox to another. Select a single or multiple items from one Select List and move it to the other Select List, you also have the ability to move all of the items at once.
How to Override Default Validation Error Message for Integer or Decimal Property in ASP.NET MVC – The value ‘xxx’ is not valid for Property
Unfortunately Microsoft did not incorporate a DataAnnotation to change the default message The value ‘xxx’ is not valid for Property to a custom one. This is when you create an int or decimal property in your model, you bind it to an input box (TextBoxFor) then try to submit the form, then you get this […]
Responsive Menu – Admin Panel – Bootstrap Menu
Recently I had to create an Admin Panel Menu and this is what I came up with. Below is the code and Fiddle
The Bible King James Version and Modern Translations (NIV, ESV, NLT, ASV)
I always knew there were some missing verses in modern Bible translations when compared to the King James Version (KJV), but never really knew what those verses were, nor bothered to do some research on them. It was until a few weeks back that I intentionally took the task upon myself to do that research […]
Import and Update Single Contact using Constant Contact Email Marketing API in ASP.NET (C# and VB.NET)
I will be showing you how to import and update a single contact from your third party system to Constant Contact using the Constant Contact API. Here is the API description for the POST (Create) call and PUT (Update) call.
Import Contacts in Bulk using Constant Contact Email Marketing API in ASP.NET (C# and VB.NET)
In this post I will show you how to use the Bulk Activities from the Constant Contact API to import contacts from your custom application to your Constant Contact Account.
How to Split Rows in a DataTable
You are given the assignment to create a CSV file report, and you say “No Problem, I just get the necessary data from SQL Server and create the CSV file”, however the columns have a max character length and Column13 has more characters than those allowed. How to handle this if you need to report […]
Amazing Grace – Golden State Baptist College – With Lyrics
Set PDF Version with iTextSharp – C# and VB.NET
Changing the PDF version with iTextSharp is fairly easy, all you have to do is create a stamper and pass an extra parameter with the PDF version you want. Below is the code snippet to accomplish this in C# and VB.NET.