Today, I’m only going to discuss finding the best ASP.NET Core 8.0.8 hosting in Europe. Intent on launching your new online business? Or do you wish to enhance the efficacy of your online business with the most effective ASP.NET Core 8.0.8 solution? If so, you can then read our review. Choosing the best and most …
ASP.NET Tutorial: Types of Error Handling in Web API .NET 8 with Example
Error handling allows a NET 8 Web API to handle unforeseen circumstances that arise during processing and provide any useful error response. Having said that, below are a few distinct approaches to error handling, along with samples for each. 1. Global Exception Handling with Middleware You can write middleware to catch unhandled exceptions for your …
An Overview of the SharePoint User Profile Search API
You can query user characteristics like name, email, job title, and department using the SharePoint Search API, which provides a robust method of accessing user profile data. Here’s how to retrieve user profiles using the SharePoint Search API. What It Does: The SharePoint Search API allows you to search for people (user profiles) in the …
ASP.NET Tutorial: Fededim.Extensions: ASP.NET Data Protection Integration
Fededim.Extensions.Configuration.Protected implements a custom ConfigurationBuilder and a custom ConfigurationProvider defining a custom tokenization tag which whenever found inside a configuration value decrypts the enclosed encrypted data using a pluggable encryption/decryption provider (a default one based on ASP.NET Core Data Protection API is provided). Introduction On October 2023, I posted an article ProtectedJson on CodeProject about …
ASP.NET Tutorial: Integrating OpenAI’s Assistant API in .NET Applications
Artificial Intelligence (AI) has transformed many industries by rendering capabilities that were previously held to be futuristic a present reality. OpenAI offers the Assistant API, so developers can easily integrate AI-based conversational agents into the applications. The Assistant API that OpenAI offers is based on powerful natural language processing capabilities to be integrated into.NET. This …
Share Files Securely in SharePoint Online
Sending the Secure Link to Recipients Step 1. Navigate to the File or Folder. Go to the document library in SharePoint Online, where the file or folder is located. Select the file or folder you want to share. Step 2. Click on the Share Button. Once the file is selected, click the Share button, typically …
How to Get-PnPSiteScriptFromWeb : File Not Found ?
The PnP team has developed a module called Get-PnPSiteScriptFromWeb that provides the site specifications in JSON format, which may be used to construct a site template from the current team site in SharePoint Online when trying to do so. The following problem was encountered when attempting to use an admin connection to access the SharePoint …
How to Fix PolyBase Issue In SQL Server 2019 Developer Edition?
This article is to discuss an common issue when we try to install SQL Server 2019 Developer Edition, custom mode. Usually, we install SQL Server by default, it works just fine. However, sometimes, we might face some problems in the new version installation. I got an issue when I installed the SQL Server Developer Edition …
ASP.NET Tutorial: Add rel=”nofollow noopener noreferrer” to External Links in Sitecore
In many of the solutions we develop with Sitecore, for external links, we need to add the nofollow noopener noreferrer values of the rel attribute for the <a> tags to have a final markup like this.
1 2 3 4 5 6 | <span class="token tag"><span class="token punctuation"><</span>a <span class="token attr-name">href</span><span class="token attr-value"><span class="token punctuation attr-equals">=</span><span class="token punctuation">"</span>https://www.example.com<span class="token punctuation">"</span></span> <span class="token attr-name">target</span><span class="token attr-value"><span class="token punctuation attr-equals">=</span><span class="token punctuation">"</span>_blank<span class="token punctuation">"</span></span> <span class="token attr-name">rel</span><span class="token attr-value"><span class="token punctuation attr-equals">=</span><span class="token punctuation">"</span>nofollow noopener noreferrer<span class="token punctuation">"</span></span><span class="token punctuation">></span></span> Go to the page <span class="token tag"><span class="token punctuation"></</span>a<span class="token punctuation">></span></span> |
These values allow us to nofollow: Tells search engines not to follow the link. noopener: Stops the new …
SQL Server Tutorial: Discover SQL’s Common Table Expressions (CTE)
CTEs: What are they? Within a SELECT statement, temporary result sets known as Common Table Expressions (CTEs) are defined. They offer a means of decomposing intricate queries into more manageable, simpler components. Consider them as makeshift tables that are only there while the primary query is running. CTEs are used within the query they are …