sharepointcafe
10 Differences between WhatsApp and WhatsApp Business App
.
We all have been using WhatsApp for day to day communication with friends, family, colleagues. But, this is for an individual and not for business user. In January 2018, WhatsApp released WhatsApp Business app for small business owners. In this…
ASP.Net Core MVC for beginners
.
This article includes the ASP.NET Core MVC web development introductions for beginners. If you are new to MVC, then read my earlier blogs on ASP.Net MVC. This article explores the basics of building an ASP.NET Core MVC web app. This…
Creating a High-Performance ASP.Net Core CRUD App with ADO.Net
.
In this blog, I am going to create a web application in ASP.Net Core to demonstrate CRUD operations using ADO.Net. Those people who already know about ASP.NET, they will understand this example very well.Those who are freshers, I would request…
Exception Handling in Python
.
In this blog, we will see how to handle exceptions in Python application. If you are new to Python, please read my previous blog – Introduction to Python Programming This blog will help you to understand try, except and finally…
How to access SQL Database Connection string in .Net Core?
.
A database connection string is a very basic task for a developer who is working on ASP.Net. But defining a database connection string in .Net Core and reading back into C# code is a little different than the traditional ASP.Net…
ASP.Net Core Razor Pages handler methods
.
In this blog, we will see ASP.Net Core Razor Pages handler methods in detail. Also, we will explore how handler methods are invoked in Razor pages based on user action. What are handler methods in .Net Core Razor pages? Handler…
Razor Pages vs MVC – Which one is better for your project ?
.
Before ASP.Net Core 2.0 we had an MVC option to develop a web application. After the release of .Net Core 2.0, a developer has one more option to create a Web Application in .Net Core i.e. .Net Core Razor pages.In…
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,…
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…
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…
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 –…
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…
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…
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…
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…
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…
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…
Create and Consume ASP.Net Web API from an Angular 7 App
.
In previous blog, we have seen how to use HttpClientModule? In this blog, we will create and consume an ASP.Net Web API in Angular 7 App using HttpClientModule. To complete this implementation I have used Visual Studio 2017 to create…
How to call an API from Angular 7?
.
In my earlier blog, I have explained How to create a static website in Angular 7? In this blog, we will see how to call an API from Angular 7. In this blog, you will see how an HTTP request is…
Create a static website using Angular 7 – Step by Step tutorial
.
In this blog, we will see how to create a static website in Angular 7. Creating a website or site in Angular is so easy that you can create a simple static website by reading this blog. As you all…
