www.sharepointcafe.net
Open in
urlscan Pro
162.215.240.27
Public Scan
Submitted URL: https://sharepointcafe.net/
Effective URL: https://www.sharepointcafe.net/
Submission: On August 02 via automatic, source certstream-suspicious — Scanned from DE
Effective URL: https://www.sharepointcafe.net/
Submission: On August 02 via automatic, source certstream-suspicious — Scanned from DE
Form analysis
2 forms found in the DOMGET https://www.sharepointcafe.net/
<form method="get" class="search-form navigation-search" action="https://www.sharepointcafe.net/"> <input type="search" class="search-field" value="" name="s" title="Search"></form>
POST https://api.follow.it/subscription-form/Y3BpTWdnS2tqU2lsSEtCd2J5NlFub0Yrdk94ajVNUjB1NVY2QlBVUmZmSkNXRk9sOXIrbDhtRktQUmd0dzZQUXBGdUttWlFwejZFQmdPN0gwTk1XUmNnYWxwdHU2dzEyQ2VnMGJHMHlNRVgxaTVuSzJ2a3VGbWtjSEtvVm1xZUV8bUpRQnBoTitTMG5zNXVqQUQycFkyUXZqamtPQ2pwZmhkZTl5cmkxL3o3dz0=/8/
<form method="post" onsubmit="return sfsi_processfurther(this);" target="popupwindow"
action="https://api.follow.it/subscription-form/Y3BpTWdnS2tqU2lsSEtCd2J5NlFub0Yrdk94ajVNUjB1NVY2QlBVUmZmSkNXRk9sOXIrbDhtRktQUmd0dzZQUXBGdUttWlFwejZFQmdPN0gwTk1XUmNnYWxwdHU2dzEyQ2VnMGJHMHlNRVgxaTVuSzJ2a3VGbWtjSEtvVm1xZUV8bUpRQnBoTitTMG5zNXVqQUQycFkyUXZqamtPQ2pwZmhkZTl5cmkxL3o3dz0=/8/">
<h5>Get new posts by email</h5>
<div class="sfsi_subscription_form_field"> <input type="hidden" name="action" value="followPub"> <input type="email" name="email" value="" placeholder="Subscribe"></div>
<div class="sfsi_subscription_form_field"> <input type="submit" name="subscribe" value="Subscribe"></div>
</form>
Text Content
Skip to content Menu * Home * AZ 900 * Technology Blogs * Digital Marketing * About * Contacts POLICY-BASED AUTHORIZATION IN .NET CORE WITH EXAMPLE August 1, 2024July 29, 2024 by sharepointcafe In this article, we will learn Policy-Based Authorization in .NET Core With Example. We will implement this authorization in .NET Core application. There are many ways to apply authorization in .NET Core, however, in this article, we will focus on Policy-based authorization. So let’s start. Overview of Authorization in Web Applications The process of determining … Read more Categories dot-net-core Leave a comment DATA VALIDATION AND ANNOTATION IN .NET MVC July 21, 2024July 20, 2024 by sharepointcafe Data Validation is one of the most important parts of any application. .NET MVC provides special classes to apply validation and data annotation. In this article, we will learn how to apply Data Validation and Annotation in .NET MVC. Previous Chapter: .NET MVC with SQL Server Database What Are Data Annotations? Data annotations are a … Read more Categories core-mvc, mvc Tags mvc, mvc_tutorial Leave a comment STATIC VS READONLY KEYWORD IN C# July 17, 2024June 24, 2024 by sharepointcafe In C#, both the static and readonly keywords are used to define fields, but they serve different purposes and are used in distinct scenarios. Understanding when and how to use these keywords is essential for writing efficient and maintainable code. Let’s dive into the differences and specific use cases for each. Please read this blog: … Read more Categories Csharp Tags c# Leave a comment SEALED CLASS IN C# – EASY EXPLANATION June 24, 2024June 22, 2024 by sharepointcafe A sealed class in C# is a class that cannot be inherited by any other class. We can not use a sealed class as a base class. This can be particularly useful when you want to enforce certain behaviours and prevent further modifications through inheritance. Please read this blog: static vs readonly keyword in C# … Read more Categories Csharp Tags c# Leave a comment HOW TO ADD SERIAL NUMBERS TO A LIST OF RECORDS IN MVC July 21, 2024June 22, 2024 by sharepointcafe Adding serial numbers to a list of records in an MVC application is a common requirement. It helps users to easily reference and identify records. In this article, we will walk you through how to achieve this in an ASP.NET MVC application. Before we proceed further If you want to go through with the MVC … Read more Categories mvc Tags mvc Leave a comment .NET MVC WITH SQL SERVER DATABASE June 24, 2024June 19, 2024 by sharepointcafe In this article, we will learn .NET MVC with SQL Server database and entity framework. Previous Chapter: Routing in MVC The .NET MVC (Model-View-Controller) framework is a popular framework for building web applications. It promotes a clean separation of concerns by dividing the application into three main components: When working with an SQL Server database … Read more Categories dot-net-core, mvc Tags c#, mvc Leave a comment .NET CORE MINIMAL API WITH EXAMPLE June 19, 2024June 18, 2024 by sharepointcafe In this article, we will learn about the minimal API concept in .NET Core. What is a Minimal API? A Minimal API is a simplified approach to building APIs in .NET, introduced in .NET 6. It streamlines the process of creating HTTP services by reducing boilerplate code and configuration, making it easier to set up … Read more Categories dot-net-core Tags .NET_Core, api Leave a comment LET’S DIVE INTO KUBERNETES: USES, BENEFITS AND LIMITATIONS June 18, 2024 by sharepointcafe Kubernetes, often abbreviated as K8s, is an open-source platform to automate deployment, scaling, and operating applications in containers. Think of containers as lightweight, portable, and self-sufficient units that package software and all its dependencies so it can run consistently across various environments. Kubernetes helps manage these containers, ensuring that they run smoothly and efficiently. Uses … Read more Categories cloud, cloud-computing Tags aws, azure, cloud-computing, kubernetes Leave a comment ACTION AND FUNC DELEGATES IN C# June 18, 2024June 17, 2024 by sharepointcafe In C# programming language, there are various delegates to use. C# provides 2 built-in delegates: Action and Func. This article will cover Action and Func delegates in C#. Before we proceed further, we will first look into delegate. What is a Delegate? A delegate is an object that holds a reference to a method to … Read more Categories Csharp Leave a comment BINARY SEARCH: AN EFFICIENT ALGORITHM June 18, 2024May 22, 2024 by sharepointcafe Binary search is a powerful algorithm, we use this algorithm to find the position of a target value within a sorted array. It works by repeatedly dividing the search interval in half, effectively narrowing down the search area until the target is found. Understanding the Problem Binary search is particularly useful when dealing with large, … Read more Categories interview Tags algorithm, programming Leave a comment Older posts Page1 Page2 … Page49 Next → RECENT POSTS * Policy-Based Authorization in .NET Core With Example July 29, 2024 * Data Validation and Annotation in .NET MVC July 20, 2024 * Static Vs Readonly Keyword in C# June 24, 2024 * Sealed Class in C# – Easy Explanation June 22, 2024 * How to Add Serial Numbers to a List of Records in MVC June 22, 2024 SUBSCRIBE TO GET LATEST FROM US GET NEW POSTS BY EMAIL © 2024 SharePointCafe.Net • Built with GeneratePress