How to enable Cross Origin Resource Sharing in ASP.NET WEB API 2?
There is a restriction named the same-origin policy that all the browsers have that prevents a web page from making AJAX requests to other domain for security reasons. As this...
...on a journey to become an outlier software engineer!
There is a restriction named the same-origin policy that all the browsers have that prevents a web page from making AJAX requests to other domain for security reasons. As this...
If you are after a component-based application structure, AngularJS has a special kind of directive called Components that uses a simpler configuration and has some defaults. In this post, I’ll...
Nowadays, end-users like responsive applications and there are times when certain type of applications need to support real-time updates if required. In this post, I’ll tell you how to write...
Nowadays, end-users like responsive applications and there are times when certain type of applications need to support real-time updates if required. In this post, I’ll tell you how to write...
There are many parts in AngularJS framework that developers need to understand properly in order to make most of the framework to write well crafted web apps. In this post,...
AngularJS framework has many powerful features, one of them is Controllers. In this post, I’ll tell you how to write AngularJS Controller using TypeScript. A Controller is used to augment the Angular...
AngularJS framework has many powerful features, one of them is known as Directives. In this post, I’ll tell you how to write custom AngularJS Directive using TypeScript. In the beginning, I’ll...
Angular framework offers Dependency Injection (DI) feature out of the box that can be used when defining components such as services, directives, filters, animations or when providing run and config blocks...
AngularJS is a great framework that has many parts that developers need to understand to write a well crafted web application. In this post, I’ll tell you the reasons & use...
In a real world application, mapping can occur in many places. Mostly we write in the boundaries between layers, such as between the UI/Domain layers, or Service/Domain layers. There is...
More