This is the second part of Web API Series. In the first part, we’ve learnt how to create a RESTful API with Web API. In this tutorial, we gonna learn how we can enhance the code and provides more flexibility and simplicity to the code. Overview The following code snippet is the implementation of our ...
Introduction Web API is a framework where you can create Web Services transmitting data over HTTP. In these series of tutorials, we are going to see how to create simple RESTful service with Web API and test it with Postman. Web API service operations are accessible via a URL like any other URL which we ...
PowerShell 5 comes with a new capability to define classes in the same way we define in C#. In this tutorial we are going to see how to define a simple class with constructor, properties, and methods. Please check the Windows PoweShell Tutorial to learn the PowerShell basics. Development Tool In this tutorial I am ...
This is the 4th part of OpenXML Spreadsheet Tutorial Series: Part 1: Basic Part 2: Export a Collection to Spreadsheet Part 3: Add Stylesheet to the Spreadsheet Part 4: Draw chart on Spreadsheet Introduction We can easily draw any type of charts in an Excel sheet using OpenXML. The only thing you need to know ...
In OpenXML Spreadsheet tutorial series you have learned how to create Excel file in .NET with C#. There might be cases when you get an error upon opening the generated excel file: <We found a problem with some content in ‘Report.xlxs’. Do you want us to try to recover as much as we can? If ...
Overview This is the 3rd part of OpenXML Spreadsheet Tutorial Series: Part 1: Basic Part 2: Export a Collection to Spreadsheet Part 3: Add Stylesheet to the Spreadsheet Part 4: Draw chart on Spreadsheet In this tutorial we are going work with our sample in the Part 2, and we are going to add style ...
Overview This is the 2nd part of OpenXML Spreadsheet Tutorial Series: Part 1: Basic Part 2: Export a Collection to Spreadsheet Part 3: Add Stylesheet to the Spreadsheet Part 4: Draw chart on Spreadsheet We will continue based on the basic sample we have created in part 1. In the part 1 we have learnt ...
Overview This is the 1st part of OpenXML Spreadsheet Tutorial Series: Part 1: Basic Part 2: Export a Collection to Spreadsheet Part 3: Add Stylesheet to the Spreadsheet Part 4: Draw chart on Spreadsheet There are two ways which .NET helps you create an Excel file in .NET: Office Interop OpenXML 2.5 Office Interop needs ...
In the previous post we take a look at how to enable pagination on a web page using AngularUI. Things gonna be different when have filters applied on your ng-repeat. The pagination would not update itself as the filter applied. What you need to do is add a watch the textbox which the filtration is ...
AngularUI pagination directive can be used to easily enable paging on your web page. In this tutorial we will learn how to do that. Demo Pre-requisites You need to download the following scripts and add a script reference in your web page. AngularJs https://code.angularjs.org/1.4.5/ CDN: https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js AngularUI https://angular-ui.github.io/bootstrap/ Optional (to have some style) Bootstrap http://getbootstrap.com/getting-started/ ...