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/ ...
In the previous post you saw how to create a very simple chat application using SignalR generated proxy. In this sample you will learn how to communicate with hub without using SignalR generated proxy. The generated proxy simplifies the process of creating hub and calling methods on the server. It enables you to create a ...
Download the source project Overview ASP.NET SignalR provides an easy way to add real-time web functionality to applications. Real-time web functionality is the ability to have server code push content to connected clients instantly as it becomes available, rather than having the server wait for a client to request new data. SignalR provides a simple ...
Definition Scrum is a framework within which people can address complex adaptive problems, while productively and creatively delivering products of the highest possible value. Scrum employs an iterative, incremental approach to optimize predictability and control risk. Scrum helps organizing teams and get work done more productively with higher quality. Scrum is about the interactions and ...
There are scenarios where you want to forward calls to a service to another service based on its contents, the action invoked, the address, or etc. For more info on WCF Routing Service you can refer to the following links: https://msdn.microsoft.com/en-us/library/ee517423(v=vs.110).aspx https://msdn.microsoft.com/en-us/library/ee517422(v=vs.110).aspx https://msdn.microsoft.com/en-us/library/ee517424(v=vs.110).aspx This example demonstrates how you can forward all calls coming to, let’s ...
This tutorial is the third part of Dispatcher Timer Windows Workflow Foundation tutorial series. << Create a simple Workflow This tutorial demonstrates how to create a simple Workflow Service and host it in a Web Application. This sample is using Visual Studio 2013 with .NET 4.5.1. The example simply gets a value as the service ...
In this article I’m going to explain how you can generate CRUD (Create, Retrieve, Update, and Delete) statements and other queries such as create database, tables, and etc. automatically using SQL Server Management Studio. There are different ways to achieves these. Imagine we have a simple table called Students as below. Generate CRUD queries ...