Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Software Blogs  >  Programming Blogs  >  SharePointCafe.Net - A technical blog on SharePoint, ASP.Net, Cloud Computing programming Blog  > 

What Is Cyber Security?
2021-01-05 19:19
You must have heard about cyber security at some time. In this blog we will learn about cyber security in very detail. Today computer and internet are being used in every field. Each and… Read More
Angular Interview Questions And Answers
2020-09-14 16:56
In this blog, I have prepared a set of questions and answers related to Angular which are very important from the point of the interview. The Angular interview questions given below is… Read More
Microsoft To End Web Browser By 2021
2020-08-23 14:39
Microsoft will shut down its web browser Internet Explorer by 2021. This web browser could not stand in front of today's modern and advance browser, as a result only few percent of peopl… Read More
All About Bulk SMS - Bulk SMS In Details
2020-08-22 16:26
In this article, we will see What is a Bulk SMS Services in details and How Bulk SMS Services Works? After reading this article, you will be able to understand All about Bulk SMS services. W… Read More
How To Make Money From YouTube Channel?
2020-08-22 16:04
Do you know that you can make money from YouTube? And, Do you know that every day, billion YouTube videos are watched around the globe. But, How someone can make money from YouTube videos?… Read More
Azure Load Balancer And Traffic Manager
2020-07-31 04:54
In this blog, we will see about Azure load balancer and Azure traffic manager. If you host a website/ application in Microsoft Azure, you want to make sure that your website always runs… Read More
Serverless Computing In Microsoft Azure
2020-07-29 13:52
In this blog, we will see about Serverless computing in Microsoft Azure Cloud service What is Serverless Computing? Serverless computing a way to abstract the servers or other hardware i… Read More
Azure DevOps For Beginners
2020-07-26 14:40
In this blog, we will see about Microsoft Azure DevOps and we will see how to create Projects and Azure Boards in Azure DevOps.  What is DevOps? DevOps is a gradual pro… Read More
Cache Tag Helper In ASP.Net Core MVC
2020-06-30 15:00
Caching is a very interesting topic in any programming language. It provides drastic changes in app performance. A cache tag is provided to implement caching in the ASP.NET Core MVC. Thi… Read More
Entity Framework Core CRUD Example
2020-06-23 07:37
In this blog, we will get a detailed look about Entity Framework Core, and we will also perform CRUD operation with ASP.Net MVC Core using Entity Framework Core.What is Entity Framework Core… Read More
A Complete Django Tutorial With Python
2020-06-16 09:04
In this article, we will see in detail about Django web development framework.If you are interested in learning Python, then you must have heard about Django. But what is the connection betw… Read More
Built-in Data Structure In Python
2020-05-29 15:08
In this blog, we will see about Data structure in Python. Friends, Data structure is a very crucial topic in any programming language. So, it is very important to clear the concept of data s… Read More
Python Modules
2020-04-17 08:59
A module in Python contains Python definitions and statements. Python modules are similar to a code library. In this blog, we will explore Python modules in details. What is Python Module?… Read More
Exception Handling In Python
2020-04-09 18:00
In this blog, we will see how to handle errors/exceptions in Python application. If you are new to Python, please read my previous blog - Introduction to Python Programming In any programm… Read More
New Breaking Features In Angular 9
2020-03-03 01:29
Google has finally released the latest one more stable version of angular, i.e. Angular 9. This is one of the biggest updates they have made in the past few years. This release mainly focuse… Read More
ASP.Net Core MVC For Beginners
2019-11-30 15:52
This article includes the ASP.NET Core MVC web development demo for beginners. If you are new to MVC, then read my earlier blogs on ASP.Net MVC. This article explores the basics of building… Read More
ASP.Net Core CRUD Example Using ADO.Net
2019-10-29 14:35
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 exam… Read More
ASP.Net Core Razor Pages Handler Methods
2019-10-13 08:06
In this blog, we will see Razor Pages Handler's methods in detail. Also, we will explore how handler methods invoked in Razor pages based on user action. Handler methods in .Net Core Razor p… Read More
Angular CRUD Example With Web API
2019-08-20 16:08
In this blog I will build an Angular application to perform CRUD operation step by step. I will use ASP.Net Web API as a middle-ware between Angular and SQL database. Before starting, make s… Read More
Introduction To Python Programming
2019-07-21 14:43
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… Read More
JSON Functions And Examples In SQL Server
2019-07-14 04:43
In this blog, we will see the use of JSON functions in SQL Server. We will also see how to query and modify a JSON data. As you already know JSON stands for JavaScript Object Notation… Read More
2019-03-16 21:55
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 o… Read More
2019-03-03 15:40
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 p… Read More
How To Call An API From Angular 7?
2019-02-25 16:16
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. To Call an API from Angular we need HttpCl… Read More
2018-12-22 16:33
Directives in Angular extend the use of HTML by adding custom behavior. In this blog, we will see the use of directives in Angular. There are 3 types of directives in Angular - Component D… Read More
Angular CLI Commands
2018-12-06 14:43
Below are few Angular CLI commands that are useful while developing an Angular Application. To install Angular CLI npm install -g @angular/cli To get online help ng help To get detailed… Read More
Angular 2 Vs Angular 4 Vs Angular 5
2018-12-03 16:33
Angular 2, Angular 4 and Angular 5 are open source and fully TypeScript based client side framework to develop Single Page Application (SPA). In this blog, we will explore the new features i… Read More
Building Blocks Of An Angular Application
2018-12-02 11:35
The main building blocks of any Angular Application are Component, Modules, Template, MetaData, Data binding, Directive, Services, Dependency Injection, Routing. In this blog, we will see… Read More
Learn Type Script Quickly
2018-11-28 14:54
In thig blog, we will learn TypeScript.If you are going to learn Angular then you must be comfortable with TypeScript. What is TypeScript? TypeScript is a typed superset of Java Script that… Read More
2018-11-24 13:07
Once you are done with the installation and setting the local development environment, we will create a new Angular App using Angular CLI. Install Angular CLI To install Angular CLI run t… Read More
How To Enable HTTPS For ASP.Net Web API?
2018-11-18 11:04
In this blog, we will see how to enable a Web API service to server over HTTPS only and not on HTTP. If you are new to Web API, then read my earlier blogs on ASP.Net Web API here. As you kn… Read More
Basic Authentication In Web API
2018-11-17 17:50
In this blog, we will see the implementation of basic authentication in Web API. Basic Authentication is a simple authentication mechanism where client sends requests with Authorization head… Read More
What Is AutoMapper In C#?
2018-11-13 00:07
AutoMapper is used to map data between two objects. In this blog, we will see how to use AutoMapper in our application. Let's demonstrate the use of Automapper by an example. Suppose we hav… Read More
2018-09-21 05:54
Hi, recently I was working on a project in MVC to post a form using Ajax to avoid page post back. Let's see the code to implement Ajax.BeginForm in an MVC application. Ajax.BeginForm i… Read More
LINQ With An MVC Project
2018-09-19 08:08
This blog contains basic information about LINQ. Also, we will see how can we use LINQ in an MVC project. What is LINQ? LINQ stands for Language Integrated Query. LINQ can be used to quer… Read More
2018-09-03 12:16
Angular is a well known powerful web application framework in use today. To provide a better stability and highly optimized web application, Angular has released multiple versions time to ti… Read More
Tag Helpers In ASP.Net Core MVC
2018-08-18 17:04
Tag Helpers is new feature introduced in ASP.Net Core MVC. Tag Helpers do the same thing as HTML Helpers in previous versions of MVC. What are Tag Helpers? Tag Helpers helps server side co… Read More
2018-08-02 04:23
In this blog, we will understand What is Dependency Injection? And, How to implement Dependency Injection in C# code? What is Dependency Injection (DI)? Dependency Injection is a desi… Read More
Storage Account In Microsoft Azure
2018-08-01 03:52
Storage account in Azure is a modern data storage place where we store data and files. In this blog, we will see what are storage services available in Azure and How to create an Azure Stora… Read More
Virtual Machines In Microsoft Azure
2018-07-19 17:59
In this blog, we will see What is a Virtual Machine? and How to create a Virtual Machine in Microsoft Azure? What is a Virtual Machine? Azure virtual machines provide a fully configurable… Read More
2018-07-13 18:35
ViewData, ViewBag and TempData in ASP.Net MVC. Let's see the differences among these using code implementation. What is ViewData? ViewData in MVC is used to transfer data from Controller… Read More
Anti-forgery Tokens In MVC
2018-07-13 06:23
In this blog, we will see Anti-forgery tokens in MVC. This is a built-in functionality in MVC given by Microsoft. This is a security aspect in ASP.NET MVC. Previous Blog - Data Annotation in… Read More
2018-07-11 17:14
Controllers executes all incoming requests using Action method. An ActionMethod may return different type of result. In this blog, we will see about ActionResult of an ActionMethod in detail… Read More
2018-07-10 09:56
In this blog, we will see Exception handling in MVC. There are more than one ways to handle an exception in ASP.Net MVC. Let's see in details below - Ways to Handle Exception in ASP.Net MV… Read More
MVC Data Annotation For Model Validation
2018-07-09 06:27
In this blog, we will see how data annotation work in MVC. We will also see how we can implement form validation using Data Annotation for Model. Data Annotation Form validation is always… Read More
2018-07-05 17:17
In this blog, we will see how to implement caching in MVC? Before writing MVC code for caching, you should be very much clear about "What is Caching?" What is Caching? Cache means to store… Read More
What's New In ASP.Net Core MVC?
2018-06-24 06:11
In this blog, we will see What's new in ASP.Net Core MVC?. This is my very first blog on ASP.Net Core MVC. After MVC version 5, ASP.Net Core MVC 1.0 and ASP.Net Core MVC 2.0 has been launche… Read More
2018-06-22 18:27
Hi All, This is my another blog on MVC. In this blog, I have explained Routing in MVC. Here I will show how to create a route for different kinds of URL. What is Routing in ASP.Net MVC? MVC… Read More
What Is ViewStart.cshtml In MVC?
2018-06-20 06:10
Hi All, if you are new to MVC, read my earlier blogs on MVC. In my previous blog, I wrote about MVC routing. In this blog, we will see the What is _ViewStart.cshtml file? ViewStart… Read More
Areas In ASP.Net MVC
2018-06-19 12:30
In the previosu blog, I wrote about Filters in MVC. In this blog, we will see What is Area in ASP.Net MVC? What is Area in MVC? The Area in MVC is basically a part of the project. Means a… Read More
2018-06-19 06:53
In ASP.Net MVC, a filter executes before or after executing an action method. Basically, Filter in MVC is a custom class where we can write some of our own logic which will execute before or… Read More
2018-06-14 12:02
HTML Helper methods are predefined methods in ASP.Net MVC to work with HTML forms. HTML helper methods generate specific HTML tags on browser. In this blog, we will see HTML Helpers in deta… Read More
2018-06-08 18:06
As you know, Routing is the important building block in ASP.NET MVC application. Apart from convention-based routing, MVC 5 supports attribute routing. In this blog, we will see attribute ro… Read More
2018-06-08 18:05
In my earlier blogs, I wrote about Routing in MVC and ActionResult in MVC In this blog, I will write about - How to add constraints in MVC routing? For those who are new to MVC or MVC routin… Read More
2018-06-04 11:26
In this blog, we will see how Controller interacts with View in ASP.Net MVC. In another way, we can say - How to pass data from Controller to View? There are multiple ways to pass data from… Read More

Share the post

SharePointCafe.Net - A technical blog on SharePoint, ASP.Net, Cloud Computing

×

Subscribe to Sharepointcafe.net - A Technical Blog On Sharepoint, Asp.net, Cloud Computing

Get updates delivered right to your inbox!

Thank you for your subscription

×