Posts

Showing posts from July, 2015

Angular JS and HTTP jason data request

Angular JS and HTTP jason data request <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script> <script type="text/javascript" scr="jscript.js> </script> <body> <div> <h1>Testing Angular JS </h1> <div> <div ng-app="My APP" ng-controller="Planet Controller"> <table>  <tr> <td>Planet Name</td> <td>Planet distance</td> </tr> <tr> <tr ng-repeat="x in names"> <td>{{x.names}}</td> <td>{{x.distance}}</td> </tr> </table> <div> </body> </html> var app=angular.module('myApp',[]); app.controller('planetController,function($scope,$http)) { $http.get("http://www.bogotobogo.com/AngularJs/Files/httpRequest/planet.jason").success.function(response) { $scope.names=respo
.NET Concepts  (Thanks http://www.indiabix.com/technical/dotnet/dot-net-framework/4) . Differentiate between managed and unmanaged code? ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ Managed code is the code that is executed directly by the CLR instead of the operating system. The code compiler first compiles the managed code to intermediate language (IL) code, also called as MSIL code. This code doesn't depend on machine configurations and can be executed on different machines. Unmanaged code is the code that is executed directly by the operating system outside the CLR environment. It is directly compiled to native machine code which depends on the machine configuration. In the managed code, since the execution of the code is governed by CLR, the runtime provides different services, such as gar