Configure and Host ASP.Net Core Application on IIS

In this blog, we will see how to host an ASP.Net Core application on IIS server.  Hosting ASP.Net Core app on IIS is not so different than hosting a traditional ASP.Net web application. If you are new to ASP.Net core, you may read this blog – ASP.Net Core Blog Pre-requisite to host ASP.Net Core application … Read more

Authentication and Authorization in MVC Application

In any kind of software application, Authentication and Authorization are taken very seriously. In this blog, we will see how can we apply authorization in an MVC application. By default, all Controllers and Actions in an MVC application are accessible by anonymous users. The Authorize attribute handles authorization for a logged-in user in MVC application. … Read more

Build and Host an Angular application on IIS

In my previous blog, I wrote about CRUD operation in Angular with .Net Web API. In this blog, I will write about building and then hosting an Angular application on IIS. In the development phase, we use ng serve command to run our Angular application with localhost URL. But, do we have to do the … Read more

Angular CRUD example with Web API

In this blog, I will build an Angular application to demonstrate the CRUD example step by step. To demonstrate this we will use C# and ASP.Net Web API as a middleware between Angular and SQL databases. Angular CRUD Example – C- Create a record in the database R- Read record(s) from database U- Update existing … Read more

Introduction to Python Programming

Python is a powerful programming language and a buzzword in today’s programming world. Python was introduced by Guido Van Rossum. Python is so easy to learn that a kid who understand English well can write programs in Python after little guidance. File extension for Python programming language is .py What type of applications can be … Read more

JSON functions and examples in SQL Server

In this blog, we will see the use of JSON functions and examples in SQL Server. We will also see how to query and modify JSON data using SQL Server Query.As you already know JSON stands for JavaScript Object Notation, which is a lightweight computer data interchange format.We can use JSON data in SQL Server tables … Read more

Binding in Angular

Data Binding in Angular means bind the data in component’s HTML file from type script file. We can get and set DOM values dynamically using Data Binding. Data binding in Angular is either one-way or two-way. Types of Binding available in Angular- Interpolation Property Binding Two-Way Binding Event Binding Interpolation Interpolation uses double curly braces … Read more

Route Guards – Create Secure Routes in Angular

What is Route Guard in Angular ? Route guards in an Angular application facilitates to block a particular route based on user authentication or on some extra permissions. In this blog, we will implement route guards in Angular. Let’s suppose that dashboard page in Angular application can not be accessed until a valid user is … Read more

Complete guide to Angular Routing

Routing means navigating from one page to another page in an application. In this blog, we will create routes, child routes in an Angular app to demonstrate the concept of routing in Angular. We will see Routing, Child Routing and Params which are main concept in Angular routing and same will help in building single … Read more

Angular Pipes – Built in and Custom Pipe

Pipes in Angular transform the data before it display it to view. In Angular 1 i.e. AngularJs, Pipes were called as filter. Angular offers built-in pipes and custom pipes as well. To apply pipe Angular uses | symbol before any pipe. Syntax to use pipe in Angular – {{<value>| <pipename>}} Angular Built-in Pipes LowerCasePipe – … Read more

RSS
YouTube
YouTube
Instagram