Posts

Employee Directory using Bootstrap, AngularJS and WCF Service

Image
Hi Guys, This time I made Employee Directory application for an organisation using Bootstrap, AngularJS and WCF Services.  This is a simple application which consumes (GET,POST) JSON enabled WCF Services using Angular JS. Hope you like it. Before you Start, 1) Any version of Visual Studio  Step One : The Solution First create a WebSite as following. Step Two : Code and Styles Since this is a Website I will not include all the code here. I will include only the AngularJS code. 1) Open js -> app.js and paste the following code var appmodule = angular.module('EmployeeApp', ['ngRoute','ngAnimate','angularFileUpload', 'smart-table']); appmodule.controller('EmployeeController', ["$scope", "$http",  EmployeeController]); appmodule.controller('EmployeeDetailController', ["$scope", "$http", "$route", EmployeeDetailController]); appmod...