<script src="/js/angular.js1.4.6/angular.min.js"></script>
border-collapse: collapse;
table tr:nth-child(odd) {
background-color: #f1f1f1;
table tr:nth-child(even) {
background-color: #ffffff;
<div ng-app="myApp" ng-controller="customersCtrl">
<tr ng-repeat="x in names">
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
$http.get("/jsjq/angularjs/Customers_SQL.aspx")
.success(function (response) {$scope.names = response.records;});