TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About eb
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Anubhav Chaudhary (4)
Vinoth Xavier (3)
Naveen Kumar (2)
Abiola David (2)
Mohammad Rabie (2)
Aman Gupta (2)
Anoop Kumar Sharma (2)
Rohatash Kumar (2)
Mudita Rathore (2)
Tejas Agravat (2)
Sravan Kumar Reddy Dudyalu (2)
Manpreet Singh (2)
Vignesh Kumar (2)
Jalpa Dhola (1)
Raveena Attri (1)
Meet Shah (1)
Datta Sai Krishna (1)
Yogesh Vedpathak (1)
Vijay Pratap Singh (1)
Arjit Soni (1)
Praveen Sreeram (1)
Sangeetha S (1)
Satya Karki (1)
Rasul Huseynov (1)
Shikha Tiwari (1)
Sanwar Ranwa (1)
Sanjay Kumar (1)
Debasis Saha (1)
Basant Kumar (1)
Vipul Malhotra (1)
Oleg Litvinov (1)
Kautilya Utkarsh (1)
Pradeep Shet (1)
Vikas Hooda (1)
Safyan Yaqoob (1)
C# Curator (1)
Gopal C. Bala (1)
Ankit Sharma (1)
Vanshika Agrawal (1)
Shashangka Shekhar (1)
Mamta M (1)
Mukesh Kumar (1)
Rekha Singh (1)
Amey Vartak (1)
Atul Rawat (1)
Ganesh Nataraj (1)
Tural Suleymani (1)
Shubhankar Banerjee (1)
Kunj Sangani (1)
Vithal Wadje (1)
Monish Bansal (1)
John Charles Olamendy (1)
Shaili Dashora (1)
Tahir Ansari (1)
Nilesh Jadav (1)
Viral Jain (1)
Vijai Anand Ramalingam (1)
Bidyasagar Mishra (1)
Vincent Maverick Durano (1)
Adarsh Nigam (1)
El Mahdi Archane (1)
Nimit Joshi (1)
Sathiyamoorthy S (1)
Atul Sharma (1)
Nigel Fernandes (1)
Mauro Guido (1)
Sagar Pardeshi (1)
Nitesh Jha (1)
Mohit Kala (1)
Abhishek Jaiswal (1)
Akshay Deshmukh (1)
Gowtham Rajamanickam (1)
Manoj Kalla (1)
Jaydeep Patil (1)
Harshad Jaybhay (1)
Asma Khalid (1)
Sarthak Varshney (1)
Uday Dodiya (1)
Daniel Gomez (1)
Madhanmohan Devarajan (1)
Mahender Pal (1)
Kirtesh Shah (1)
Hardik Dhankecha (1)
Arpit Jain (1)
Related resources for eb
No resource found
Overview of SharePoint Search API for SharePoint User Profiles
11/7/2024 6:43:36 AM.
The SharePoint Search API allows you to query user profile data, such as name, email, job title, and department. Using the POST /search/postquery method, you can easily retrieve user information with
Build Your Own Number to Words Converter
11/6/2024 7:11:30 AM.
This tutorial guides you through setting up the HTML structure, styling the converter for an attractive look, and implementing JavaScript to convert numeric input into its word representation. Perfect
Create Azure App Service via PowerShell 7
11/5/2024 10:05:05 AM.
In this guide, learn how to create an Azure App Service using PowerShell 7. We'll cover the essential steps, including setting up your environment, configuring your app service plan, and deploying
Exploring the New T-SQL Enhancements in SQL Server 2022
11/5/2024 5:39:41 AM.
In this article we will explore the powerful new T-SQL enhancements in SQL Server 2022, including features like DATE_BUCKET, DATETRUNC, and IS DISTINCT FROM, designed to simplify data handling and opt
Handling Transient Failures in .NET 8 With Polly
11/5/2024 4:30:31 AM.
This article discusses implementing a retry mechanism for handling transient faults in service interactions. It defines transient faults, such as temporary network issues or resource exhaustion, and e
Dev Tunnel in Visual Studio Simplifies Local Development
11/5/2024 3:40:41 AM.
Explore the Dev Tunnel feature in Visual Studio 2022, designed to streamline local development and debugging. This powerful tool allows developers to create a secure connection to their remote environ
JWT Token Based Implementation using ASP.NET Core Web API
10/29/2024 6:30:51 AM.
JWT (JSON Web Token) is a way to share information securely between two or more systems and JWT structure allows for secure information exchange and user authentication.
How to Create and Use Key Vault References in .NET Core Web API
10/28/2024 4:14:04 AM.
Azure App Configuration allows your application to use Key Vault references by creating keys that point to values stored in Key Vault. Rather than storing sensitive data directly, App Configuration us
User Profile Photos are Missing in the PnP People Webpart
10/27/2024 6:05:26 AM.
In this article, we will learn troubleshooting steps and best practices to ensure profile pictures display correctly, enhancing user experience in your SharePoint environment.
Debugging Azure DevOps Pipelines with System.Debug
10/26/2024 6:13:32 AM.
This article explores essential techniques for Azure DevOps pipeline error diagnosis. It discusses how to enable diagnostic logs for individual and all pipeline executions using the "Enable Syste
SQL Data Analysis in Databricks Notebook
10/25/2024 6:09:40 AM.
This video dives into performing SQL Data Analysis in Databricks Notebook.
Web api call in Android
10/25/2024 4:55:38 AM.
This article explains how to call a Web API in an Android app using Java. It covers key concepts like HTTP methods (GET, POST), status codes, headers, and the use of the OkHttp library for making API
A Comprehensive Guide to the Web Notification API
10/24/2024 5:38:40 AM.
The Web Notification API is a browser-based interface that allows websites to send notifications to users, even when the user is not actively viewing the site. It enables web apps to display notificat
Mastering API Testing with Api.http Files in .NET Projects
10/23/2024 6:06:57 AM.
The Api.http file in a .NET project is a text file containing one or more HTTP requests that can be executed directly from the development environment, such as Visual Studio or Visual Studio Code. Thi
ASP.NET Core Middleware
10/22/2024 11:57:39 AM.
ASP.NET Core Middleware plays a crucial role in the request processing pipeline of web applications. It allows developers to add custom functionalities, such as authentication, logging, and error hand
Compiling Multiple Files to Build an Application
10/22/2024 10:46:04 AM.
This article explains how to compile multiple C files into a single executable using the C compiler. It covers two approaches: compiling multiple files with the cc command or using the #include direct
Caching HTML Tags Using WebForms Core Technology
10/22/2024 8:31:41 AM.
In this article, we teach how to cache static HTML tags (header, footer, right and left menus, etc.) in the user's browser by using WebForms Core technology in the CodeBehind framework.
ReactJS in 2024: Trends, Opportunities, Salaries, and Future Outlook
10/21/2024 11:20:21 AM.
Discover lucrative opportunities for developers, understand current salary ranges, and gain insights into the future outlook of web development. Stay ahead in the competitive market with key informati
Serialization and DeSerialization in C#
10/21/2024 10:18:19 AM.
Serialization is the process of converting an object into a storable format, such as XML, JSON, or binary, while deserialization restores it to its original form. Common types include XML, JSON, Binar
Learn AngularJS From Beginning: Service - Part Three
10/21/2024 9:48:47 AM.
This article explores AngularJS services, emphasizing their role in organizing and sharing code through dependency injection. It covers creating custom services using the factory, service, and provide
Read/Write From Fabric Lakehouse to Databricks Notebook using ABFSS Protocol
10/21/2024 8:15:07 AM.
In this episode, I covered how to Read/Write From Fabric Lakehouse to Databricks Notebook using ABFSS Protocol.
Troubleshooting 404 or 500 Error After Deploying Vue 3 App to IIS
10/21/2024 6:06:12 AM.
Facing a 404 or 500 error after deploying a Vue 3 application to IIS? This guide helps troubleshoot common issues, from configuring the web.config file to resolving routing problems with Vue Router
Azure service bus queue with .net core and python
10/20/2024 9:30:13 AM.
This article demonstrates how to implement Azure Service Bus queues using both .NET Core and Python. It covers creating a message sender with a web API in .NET Core and a receiver using a console app.
Learn NLog Advanced Usage
10/19/2024 3:10:53 PM.
This article explores implementing dynamic logging in multi-tenant applications using NLog. It discusses configuring NLog to enable debug logging on a per-request basis without modifying existing conf
Training on using WebForms Core Technology to Upload Images
10/19/2024 2:52:21 PM.
In this article, using WebForms Core technology, we will teach you how to send images to the server and display the images sent in the client.
Use Cases of Alchemy in Web3
10/19/2024 2:02:21 PM.
Alchemy is a powerful platform for developing decentralized applications on blockchain technology. It supports various sectors, including DeFi, NFT marketplaces, and DAOs, by providing essential tools
Debugging Angular Using Visual Studio Code (VSCode)
10/14/2024 11:45:42 AM.
Debugging Angular using Visual Studio Code (VSCode).
Apply "Go to Bottom" and "Go Up" on Click of Anchors
10/14/2024 6:13:08 AM.
This article guides you through implementing the Go to Bottom and Go Up functionality in an AngularJS application. Learn how to create a seamless navigation experience in single-page applications usin
Calling Web API to Web API without User Interaction by using Azure Managed Identity
10/14/2024 5:59:13 AM.
This article will walk you through connecting two web APIs without any login or user interaction. It is referred to as "Server-to-Server" or "Service-to-Service" communication. You
Minimal APIs or Controllers in ASP.NET Core
10/14/2024 5:56:00 AM.
In ASP.NET Core, developers can choose between Minimal APIs and Controllers for building web APIs. Minimal APIs offer a lightweight, streamlined approach with simpler routing, while Controllers follow
Fixing the 'Process with an Id of #### is not Running' Error in Visual Studio
10/14/2024 5:09:18 AM.
In this article, we will learn why this error occurs, how to identify the underlying cause, and step-by-step solutions to fix it, ensuring smoother development and debugging in Visual Studio projects.
ASP.NET Web Configuration File
10/11/2024 12:30:22 PM.
Configuration file is an important file in ASP.NET. Learn, what is a Web.Config file? What is in Web.config files? What are the different types of Configuration files in ASP.NET? Machine.config File v
Integration And Server Broadcast With SignalR 2
10/11/2024 12:29:10 PM.
Discover how to implement real-time communication in your applications using SignalR 2. This guide covers the integration of SignalR for server broadcast functionality, enabling seamless data transfer
ASP.NET Core - CRUD With React.js And Entity Framework Core
10/11/2024 12:27:56 PM.
Discover how to implement CRUD (Create, Read, Update, Delete) operations, set up a RESTful API, and manage data effectively. Enhance your web development skills with practical examples and best practi
Building a Blazor Server App to Fetch RSS Feeds Using .NET Core
10/11/2024 8:54:06 AM.
In this article, we will explore how to build a Blazor Server app using .NET Core 6.0 to fetch and display RSS feeds. You’ll learn about setting up the Blazor environment, using HTTP clients for data
Power of Web APIs: 12 Essential APIs for Java Developers
10/11/2024 6:17:14 AM.
Staying updated with essential web APIs is vital for developers to build efficient, scalable, and user-friendly applications. This article explores key APIs, including Geolocation, Web Workers, and We
Scaffolding ASP.NET Core MVC
10/11/2024 6:03:08 AM.
In this article, you will learn about scaffolding ASP.NET Core MVC.
Change Style Dynamically in Various Ways Using AngularJS
10/8/2024 9:20:34 AM.
This article explores three methods for dynamically changing styles in AngularJS applications. It covers how to implement external Angular.js files, create CSS classes, and use the ng-class directive
Create Cool Webpage Using CSS3 Custom Fonts
10/8/2024 9:17:45 AM.
This guide covers how to effectively use custom fonts on your website. It includes steps for downloading fonts from reliable sources, converting them from .ttf to .eot for better browser compatibility
Creating DropDown Menu in Bootstrap
10/8/2024 9:17:17 AM.
Learn how to create a dropdown menu in Bootstrap, a powerful frontend framework for web development. This guide covers step-by-step instructions to implement responsive navigation menus using HTML, CS
Customize Scrollbars Using CSS3
10/8/2024 9:02:58 AM.
This guide covers essential CSS properties, such as scrollbar width, scrollbar-color, and ::-webkit-scrollbar for cross-browser compatibility, enabling you to create sleek, modern scrollbars.
Using Border Radius and Gradients in CSS3: Part I
10/8/2024 9:01:34 AM.
This article introduces the use of CSS3 for creating gradients directly in web pages, eliminating the need for image workarounds. It explains the two primary types of gradients: linear and radial. A p
Session In ASP.NET
10/8/2024 8:56:35 AM.
Learn how to implement session state, manage session variables, and enhance security while optimizing performance. Understand the differences between ASP.NET Web Forms and ASP.NET Core sessions, ensur
How to use StyleSheets
10/8/2024 8:54:45 AM.
Learn how to effectively use StyleSheets to enhance your web design and development skills. This guide covers the fundamentals of CSS, including external and inline styles, responsive design technique
Displaying Partial View On Condition in Web API
10/8/2024 8:53:24 AM.
This article explains how to create and display partial views conditionally in an ASP.NET MVC Web API application. By selecting a value from a drop-down list and submitting it, the corresponding parti
Implementing Swagger In Web API
10/8/2024 8:51:54 AM.
In this guide, we explore the process of implementing Swagger in Web APIs to enhance documentation and improve usability. Swagger, an essential tool for API development, provides interactive documenta
Difference Between MVC and Web API
10/8/2024 8:51:17 AM.
This article explores the differences between ASP.NET MVC and Web API, focusing on their roles, use cases, and key features. MVC is used for creating web applications with data and views, while Web AP
Create Web API in MVC 6
10/8/2024 8:48:58 AM.
Learn how to create a Web API using ASP.NET MVC 6 in this comprehensive guide. We’ll cover essential topics like setting up the MVC framework, building API controllers, implementing RESTful services,
Understanding ASP.NET Session State
10/8/2024 4:03:08 AM.
ASP.NET Session State is a method for managing user data during a web session. It enables storing and retrieving session-specific information like user preferences, shopping carts, and login status.
Real-World Expression Trees: Dynamic Filtering in C# with Minimal API
10/6/2024 7:51:48 AM.
This article explores the practical use of expression trees in C# by building an ASP.NET Core web API with dynamic filtering functionality. It demonstrates how to construct flexible queries using expr
DATE_BUCKET Function New T-SQL Enhancements in SQL Server
10/5/2024 6:28:43 AM.
This article will delve into the DATE_BUCKET function, its syntax, and its practical use cases using the AdventureWorks2022 sample database. We’ll also compare DATE_BUCKET with other similar T-SQL fun
How to Build and Monitor dApps Using Alchemy
10/4/2024 5:42:03 AM.
Learn how to create a blockchain app using Alchemy, connect it to MetaMask, send transactions, and monitor blockchain activity in real-time using Alchemy's powerful dashboard tools.
Rich Text Control With Image And Video In SPFx Using React-Quill
10/3/2024 11:49:18 AM.
This article explores how to implement a rich text field in Modern SharePoint List forms using React Quill. It covers the process of creating a SharePoint list, setting up an SPFx solution, and integr
How To Create ASP.NET Core MVC Application
10/3/2024 11:48:21 AM.
This tutorial covers setting up your development environment, creating controllers, models, and views, and building a fully functional web application using the ASP.NET Core MVC framework.
iPhone Memory Leaks Tracking and Use of Instruments
10/3/2024 11:41:57 AM.
This article explores iPhone memory leaks, detailing how to track them using Instruments and NSZombie. It explains what memory leaks are, their causes, and the consequences of losing track of allocate
Creating Stored Procedures with Managed Code
10/3/2024 11:41:01 AM.
This article demonstrates how to create a stored procedure in Microsoft SQL Server 2005 using managed code in C#. It details the process of setting up a SQL Server project in Visual Studio, writing th
Uploading Multiple Files With ListBox in ASP.NET
10/3/2024 11:40:19 AM.
This article explains how to upload multiple files using a ListBox control in ASP.NET. Unlike the standard FileUpload control, which supports single file uploads, this method combines FileUpload with
Bootstrap For Beginners - Part Two (Bootstrap Containers)
10/3/2024 11:31:45 AM.
This article explores Bootstrap containers, focusing on the two main classes: .container for a responsive fixed-width layout and .container-fluid for a full-width layout. It provides practical example
Implementing CORS in .NET Core 8
10/3/2024 11:30:09 AM.
This article explores Cross-Origin Resource Sharing (CORS) in .NET Core 8, specifically for Angular applications. It outlines best practices for configuring CORS, including setting allowed origins, ha
Send Email to Gmail in ASP.Net Using C#
10/1/2024 8:35:17 AM.
Create a simple email system in ASP.NET C# using Visual Studio 2010. The system allows users to input an email address and a message in two TextBoxes. It sends the email via Gmail's SMTP server us
Introduction To SignalR With .NET Core - Part One
10/1/2024 8:24:06 AM.
Learn how SignalR enables seamless server-client messaging, the basics of its architecture, and step-by-step instructions to set up your first SignalR project in ASP.NET Core.
How To Create An App Page Using SharePoint Framework In SharePoint Online Modern Site
10/1/2024 8:22:16 AM.
This article guides you through creating an app page using SPFx in SharePoint Online Modern Site. An app page allows pre-configured application content without user authoring. You'll learn to set
Web Based Game Using JavaScript
10/1/2024 4:50:21 AM.
In this article, you'll learn how to create a simple web-based game, "Catch My Santa," using HTML, CSS, JavaScript, and jQuery. The game features a 3x3 grid where players must tap on box
Application State vs Session State in Java
9/30/2024 8:36:48 AM.
State management in Java is vital for web applications, categorizing data into Application State and Session State. Application State shares data globally across users, ideal for configurations and ca
ASP.Net SignalR: Building a Simple Real-Time Chat Application
9/27/2024 10:21:27 AM.
In this tutorial, we build a simple real-time chat application using ASP.NET MVC and SignalR. SignalR enables live data updates by pushing content from the server to clients, perfect for chat, notific
How to Download Code from Your Azure Function App
9/27/2024 5:59:14 AM.
In this article, we will learn how to easily download code from your Azure Function App using built-in tools like the Azure Portal, App Service Editor, or source control integration.
How to Build a Clean Architecture Web API with .NET Core 8
9/26/2024 9:15:22 AM.
Learn how to build a robust Web API using Clean Architecture principles with .NET Core 8. This guide covers essential concepts, including modular design, dependency injection, and best practices for A
QUIZ Application With ASP.NET MVC 5
9/26/2024 8:45:26 AM.
Create a dynamic Quiz Application using ASP.NET MVC 5, showcasing the power of the Model-View-Controller architecture. This project involves user authentication, database integration for question mana
CRUD Operations Using Asynchronous Programming in MVC 5
9/26/2024 7:22:44 AM.
This article explores CRUD (Create, Read, Update, Delete) operations using asynchronous programming in ASP.NET MVC 5. It delves into how asynchronous methods enhance application performance and respon
Apply CRUD Operations in Dynamic Grid Using AngularJS
9/26/2024 7:20:03 AM.
This guide explores implementing CRUD (Create, Read, Update, Delete) operations within a dynamic grid using AngularJS. It covers essential concepts such as data binding, user interface design, and RES
ASP.NET MVC Chat Application Using SignalR
9/26/2024 7:11:47 AM.
This tutorial guides you through creating a real-time chat application using ASP.NET MVC and SignalR. You'll learn how to set up a SignalR hub for managing communication, implement user authentica
JWT Token Authentication And Role Authorization Using .Net Core 6.0 Web APIs
9/26/2024 6:13:29 AM.
This post covers implementing JSON Web Tokens (JWT) for authentication in an ASP.NET Core Web API. It details creating a new project, using JWT for secure token generation, and implementing role-based
API Versioning and Enable Authorization in Swagger UI .NET Core
9/25/2024 9:05:09 AM.
In this article, we explore API versioning and how to enable authorization in Swagger UI for a .NET Core Web API. We’ll discuss best practices for managing API versions, ensuring backward compatibilit
Implement Google reCAPTCHA In ASP.NET MVC
9/24/2024 12:00:17 PM.
ReCAPTCHA is a Google service designed to verify that users are human, protecting websites from bots and spam. This article demonstrates how to integrate reCAPTCHA version 2.0 into an ASP.NET MVC appl
ASP.NET 3.5 Tabbed Pages
9/24/2024 11:55:31 AM.
Tabbed pages are an effective way to organize content on web applications, improving user experience. By using a combination of MultiView and View controls in ASP.NET, developers can create intuitive
Create Modern Page Template In SharePoint Online
9/24/2024 11:55:00 AM.
Learn to customize layouts, integrate web parts, and optimize content management within SharePoint's modern UI. Ideal for improving site design and user experience.
Implement Insert, Update and Delete Functionality in the WebGrid: Part 1
9/24/2024 11:54:26 AM.
In this tutorial, we introduce how to implement essential CRUD (Create, Read, Update, Delete) functionality in a WebGrid. This is Part 1 of a series, focusing on adding new records, updating existing
CRUD Operation In MVC Using Elastic Search
9/24/2024 11:51:17 AM.
Elastic search is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elastic search is d
Getting Started With Angular 2 Application Using Visual Studio
9/24/2024 9:13:16 AM.
This article provides a step-by-step guide for developing Angular 2 applications using Visual Studio 2015. It covers prerequisites such as installing Visual Studio, Node.js, and TypeScript, along with
HTTP Methods for Web Development
9/24/2024 9:02:52 AM.
HTTP methods are essential for communication between clients and servers in web development. They define how data is requested, sent, and managed. Common methods include GET, POST, PUT, and DELETE, ea
Angular 2 Bind DropDown List Using Web API
9/23/2024 12:01:25 PM.
We'll explore the steps to set up an HTTP client, create a service to fetch data from a RESTful API, and implement dynamic data binding in your Angular components. By the end, you'll have a fu
Understanding Chat Box in .NET
9/23/2024 11:08:46 AM.
Discover how to integrate APIs and manage data storage for a seamless messaging experience. Perfect for developers looking to enhance their web applications.
Chat Bot With Azure Authentication - Part One
9/23/2024 11:08:03 AM.
This article series covers how to register an app with Azure Active Directory, obtain an access token, and integrate Azure Bot Service. It explains setting up authentication, saving conversation state
Create List in SharePoint Using REST API
9/23/2024 10:54:30 AM.
Learn how to create a list in SharePoint 2013 using the REST API in this comprehensive guide. We'll explore step-by-step instructions, key concepts, and practical examples to help you leverage Sha
Manage Web Applications In SharePoint Central Administration - Part Eight
9/23/2024 9:52:25 AM.
This article covers managing web applications in SharePoint 2016 Central Administration. It walks through key steps, including accessing Central Admin, configuring mobile accounts, setting up SMS noti
How to Manage ViewState in ASP.NET?
9/23/2024 9:16:18 AM.
This article explains various methods of managing state in ASP.NET, including ViewState, Session, Application, and Cookies. It focuses on ViewState, its lifecycle, enabling/disabling at the page or co
Containerize React JS and .NET Core Apps with Docker and Kubernetes
9/23/2024 9:07:58 AM.
This guide demonstrates how to build a sample product management application using .NET Core Web API for the backend and React JS for the frontend. The app is containerized with Docker and Kubernetes
What are Different File Extension in .net
9/23/2024 8:37:06 AM.
This article explores key file extensions in ASP.NET, including .ASPX for web pages, which combine HTML and server-side code to generate dynamic content, and .CS for C# source files, essential for def
C#.NET - Access OAuth REST Web API Method
9/23/2024 5:23:38 AM.
C#.NET applications can access OAuth-protected REST APIs. You'll obtain an access token through OAuth flow (often via a separate request) and include it in the authorization header of your HttpCli
Node.js App with User Authentication and Docker Deployment
9/22/2024 12:09:32 PM.
Learn how to create a Node.js app with registration, login, and a dashboard. This guide covers MongoDB integration and Docker deployment for efficient web development.
Learn CSS Scroll Snaps
9/21/2024 2:51:51 PM.
In this article we learn about CSS Scroll Snaps.
Configure Authentication Providers On Web Applications In SharePoint Central Administration
9/20/2024 9:34:21 AM.
You'll learn step-by-step instructions to set up various authentication methods, including claims-based and custom authentication, ensuring secure user access and effective identity management for
Add rel="nofollow noopener noreferrer" to External Links in Sitecore
9/20/2024 9:06:55 AM.
This guide explains how to enhance your Sitecore website's SEO and security by adding the attributes rel="nofollow", rel="noopener", and rel="noreferrer" to external
Download Multiple Excel Files via Web API .NET and Angular
9/20/2024 6:02:37 AM.
To export multiple Excel files, various approaches can be used, including downloading a zip file, creating multiple worksheets in a single Excel file, or calling APIs multiple times to retrieve files.
Download Multiple Excel Files via Web API and Angular
9/20/2024 5:59:28 AM.
In this article, we will learn how to implement file streaming in the backend and trigger downloads via Angular's HTTPClient, enabling efficient file handling across platforms.
How To Utilize Web Templates And Content Snippet Effectively In Dynamics 365 Portal
9/19/2024 10:16:20 AM.
This guide covers best practices for customizing templates, reusing content snippets, and optimizing your portal to enhance user experience and workflow efficiency.
Getting Record ID From EntityView In Dynamics 365 Portal
9/19/2024 10:15:46 AM.
This article explains how to use an entity list in Dynamics 365 portals to manage records efficiently. It demonstrates configuring a web template to redirect users to a details page if only one record
Introduction To ASP.NET Core Razor Pages
9/19/2024 10:07:58 AM.
This article introduces Razor Pages in ASP.NET Core using .NET 5, guiding beginners and experienced developers through creating a "Hello World" project. It covers prerequisites, installation
Block IP Address In ASP.NET Core Web API
9/19/2024 10:04:00 AM.
This article will explain that how to block IP address for particular time frame with multiple request. It will restrict user to enter into controller if user hit system multiple times during fixed ti
Revolving Door 3D Animation Using CSS3 Only
9/18/2024 12:23:21 PM.
Learn to utilize keyframes, CSS transforms, and transitions to build a dynamic, rotating 3D door effect. Perfect for web designers looking to enhance user interfaces with smooth animations.