In this example I am calling the Canvas LMS API to get a list of enrolled students, including their grades, for a specific course.
Create iCal ics Files in C# ASP.NET MVC – Several Methods
Creating an iCal (ics file) is really simple. In this post I will show you how to create one using iCal.NET library and one using plain ol StringBuilder.
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 […]
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.
Flatten PDF Form Fields with iTextSharp – Two Methods – ASP.NET
I will show two methods to flatten editable form fields in a PDF file. Method 1 is true form flattening and method 2 is just making the editable fields read only. Personally I was using method 1 for some time, however in some instances (more specifically when merging images into a PDF file and messing […]
How to Access ASP.NET Controls Inside An Outer And An Inner ASP Repeaters (Controls Inside Two ASP Repeaters)
Working with ASP.NET repeaters can be a little bit tricky if you do not fully understand them. In plain words, you have to find the outer repeater, then from here find the inner repeater, then from this inner repeater find the control(s). If I haven’t confused you enough, look at the examples, it will be […]
FullCalendar – jQuery Event Calendar in ASP.NET
This event calendar implements JQuery FullCalendar in ASP.NET.