Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Harshad Tretiya(12)
Tuhin Paul(4)
Ashish Bhatnagar(3)
Sandeep Mishra(3)
Jignesh Trivedi(3)
Priyaranjan K S(3)
Amit Mishra(3)
Dashrath Hapani(2)
Aman Gupta(2)
Jitendra Mesavaniya(2)
Sarthak Varshney(2)
Abhishek Chadha(2)
Arun Potti(2)
George (2)
Nanddeep Nachan(2)
Bilal Shahzad(2)
Zain Ul Hassan (2)
Arutselvan Muthukannu(2)
Prasham Sabadra(2)
Mark Pelf(1)
Sangeetha S(1)
Ishika Tiwari(1)
Manoj Kalla(1)
Babita (1)
Waqas Anwar(1)
Deepika Edakkoth(1)
Akshay Shedwad(1)
Dharmeshwaran S(1)
Prakashkumar Sahoo(1)
Saroj Barisal(1)
Jaimin Shethiya(1)
Tahir Ansari(1)
Vijayaragavan S(1)
Nagaraj M(1)
Arvind Yadav(1)
Pushpendra Shukla(1)
Vipul Jain(1)
Anupam Maiti(1)
Ammar Shaukat(1)
Sean Franklin(1)
Sanjay Mrinal Kumar Kodangi(1)
Abhishek Yadav(1)
Sandhya Shinde(1)
Harsha Vardhini(1)
Mageshwaran R(1)
Bidyasagar Mishra(1)
Pritey Mehta(1)
Hitanshi Mehta(1)
Kapil Gaur(1)
Sanwar Ranwa(1)
Abhishek (1)
Iqra Ali(1)
Vikas Srivastava(1)
Guest User(1)
Kishan Choudhary(1)
Rajeesh Menoth(1)
Gowtham Rajamanickam(1)
Akshay Phadke(1)
Manas Mohapatra(1)
Francis (1)
Nishant Mittal(1)
Santosh Kumar Adidawarpu(1)
Praveen Sreeram(1)
Vignesh Mani(1)
Resources
No resource found
Understanding SESSION_CONTEXT in SQL Server
Jun 26, 2025.
This article explains SQL Server's SESSION_CONTEXT, a session-scoped key-value store introduced in 2016, useful for securely passing metadata like User ID or flags between procedures, triggers, and applications.
Sharing Session and Application data
Apr 21, 2025.
The request scope makes data available to multiple pages processing the same request. But in many cases, data must be shared over multiple requests.
Bootstrap5 Session Timeout Script (JS)
Mar 27, 2025.
This article presents a custom Bootstrap 5 session timeout script using JavaScript and jQuery. It ensures security by logging out inactive users, handling AJAX challenges, and supporting multilingual Bootstrap themes
ASP.NET Session State: Storing Data Beyond IIS Restarts
Mar 20, 2025.
?To maintain ASP.NET sessions after an IIS restart, configure the session state to use SQL Server, State Server, or a distributed cache like Redis instead of the default in-memory storage.
WebMethod and ScriptMethod Attributes in .NET Webfroms
Mar 15, 2025.
?In ASP.NET Web Forms, client-side scripts like JavaScript and jQuery can call server-side methods using the [WebMethod] and [ScriptMethod] attributes. These methods must be declared as static (C#) or Shared (VB.NET). This approach enables AJAX functionality, allowing asynchronous data exchange without full page reloads.
Scope Communication Object in JSP
Feb 28, 2025.
The Scope Communication object consist of session object, application object and pageContext object.
Dynamic Menus in Layout Page Using Sessions in ASP.NET Core 6
Jan 31, 2025.
Store dynamic menu data in session and display it across multiple pages using the layout page in ASP.NET Core 6.
Session in ASP.NET Core MVC .NET 8
Dec 10, 2024.
This article covers enabling sessions in .NET 8 ASP.NET Core MVC, storing/retrieving session values, managing session keys, and implementing session handling with step-by-step examples and code walkthroughs.
How to Use Microsoft Teams for Project Management
Nov 28, 2024.
Microsoft Teams simplifies project management by integrating task management, real-time communication, and collaboration. Use Planner for tasks, schedule check-ins, and keep your team organized with chat updates and meetings.
Managing User Sessions in React
Nov 11, 2024.
Session management is a fundamental aspect of web applications that allows developers to track user activity, maintain login states, and manage temporary data throughout a user's interaction with the system.
Mastering Session Management in ASP.NET Core with NCache
Oct 24, 2024.
Learn how to implement high-performance, scalable caching for ASP.NET applications, ensuring optimal session state handling, improved load balancing, and fault tolerance with NCache integration.
PowerShell 7 - Create New PowerShell Instances
Oct 21, 2024.
Learn how to open fresh PowerShell sessions, automate workflows, and take advantage of cross-platform scripting. This guide covers step-by-step instructions for setting up and running new PowerShell instances.
Application State vs Session State in Java
Sep 30, 2024.
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 caches, while Session State is user-specific and temporary, suitable for personal preferences and shopping carts.
Securing Sessions in Java Web Applications: Preventing Session Fixation and Replay Attacks
Aug 25, 2024.
Securing Sessions in Java Web Applications: Preventing Session Fixation and Replay Attacks
Best Practices for Managing Large Session States in ASP.NET MVC
Aug 14, 2024.
To manage large session states in ASP.NET MVC efficiently, follow best practices: minimize stored data, use serializable objects, enable session state compression, and implement distributed caching with Redis or Memcached.
Understanding Managing Sessions in .NET
Jun 25, 2024.
Sessions in web development persist user data across requests despite HTTP's stateless nature. This article details sessions in .NET, showing initialization, data storage, and termination. It explains enabling sessions in ASP.NET Core, setting session data, and session benefits like state management and security.
Detect Session Changes in Dynamics 365 Customer Service App
Jun 21, 2024.
The Dynamics 365 Customer Service Workspace app aids agents in managing multiple sessions efficiently. Detecting session changes with JavaScript enhances context switching, productivity, and customer experience.
Understanding ZooKeeper: Key Concepts and Architecture
Jun 19, 2024.
Explore the key concepts and architecture of ZooKeeper, a distributed coordination service, and understand its impact through an example of a distributed lock service.
The Art of JavaScript Hoisting: Understanding the Ins and Outs
Jun 11, 2024.
Discover the intricacies of JavaScript hoisting in this comprehensive guide. Understand how JavaScript handles variable and function declarations, the impact of scope, and the best practices to avoid common pitfalls.
Securing User Sessions: Implementing Multi-Tab/Multi Browser Auto Logout in .NET Core
Jun 01, 2024.
Implementing auto logout for multi-tab/multi-browser sessions in .NET Core enhances user session security by ensuring that when a user logs out from one tab or browser, all active sessions across different tabs and browsers are simultaneously terminated, preventing unauthorized access.
Multi-Browser Session Logout in ASP.NET Core Without SignalR
May 19, 2024.
The Automatic Multi-Browser Logout feature enhances the security and convenience of your online experience by ensuring that when you log out from one browser, you are automatically logged out from all other active sessions across different browsers and devices.
How to Integrate Instant Plugins in the Canvas App?
Apr 29, 2024.
Dataverse Accelerator by Microsoft introduces low-code plug-ins for real-time business logic workflows in Canvas apps. Learn step-by-step integration of Instant Plugin with Power Fx in Dataverse environment. Test and utilize the Instant Plugin for efficient app development.
SQL Temporary Tables: Syntax, Types, and Usage
Apr 25, 2024.
SQL temporary tables are session-specific tables used to store interim results during query processing. They're created and destroyed within a session, offering a scratchpad for complex queries or to break down tasks.
Client-Side Data Storage: Local & Session Storage in JavaScript
Apr 24, 2024.
This Article describes how to store data on the client side and the difference between local storage and session storage and their methods.
ViewData vs ViewBag vs TempData vs Session in .NET
Mar 30, 2024.
In ASP.NET, passing data between controllers and views is a common requirement for building dynamic web applications. ASP.NET provides several mechanisms for achieving this, including ViewData, ViewBag, TempData, and Session.
Protecting Your Web Application From Session Replay Attacks In Azure Cloud
Jan 14, 2024.
In today's world of increasing digital interconnectedness, online security threats are continuously increasing, and cybercriminals are finding new and innovative ways to exploit system vulnerabilities. One such type of attack is a Session Replay Attack. In this article, we will discuss what Session Replay Attacks are, their proper real-life use cases, implementation in Azure Cloud, countermeasures to minimize them, and how to handle them in .Net Core web applications. In today's world of increasing digital interconnectedness, online security threats are continuously increasing, and cybercriminals are finding new and innovative ways to exploit system vulnerabilities. One such type of attack is a Session Replay Attack. In this article, we will discuss what Session Replay Attacks are, their proper real-life use cases, implementation in Azure Cloud, countermeasures to minimize them, and how to handle them in .Net Core web applications.
Scaling Azure Databricks Secure Network Access to Azure Data Lake Storage
Dec 13, 2023.
Explore secure network access in Azure Databricks to Azure Data Lake Storage. Learn setup, RBAC, and secure coding with practical examples.
Cookie vs. Session vs. Local Storage
Nov 06, 2023.
cookies are small pieces of data stored in a user's browser, often used for limited-size, temporary information like session tokens and user preferences. Session storage, on the other hand, serves as a repository for temporary data that persists only for the duration of a single page session, providing a larger storage capacity than cookies. It is accessible within the same browser tab or page and is more secure against certain attacks. In contrast, local storage is designed for persistent data that remains even after the browser is closed, offering a substantial storage capacity. It's accessible across various tabs and windows within the same browser but requires developers to be cautious about potential security vulnerabilities, particularly related to cross-site scripting (XSS) attacks.
CMD Session action in Desktop flow using Microsoft Power Automate
Jun 21, 2023.
Reading this article, you can learn how to execute the windows commands, Using Open CMD session action, Read from CMD session, Write to CMD session action and Close CMD session action with Desktop flow in Microsoft Power Automate.
Create Custom Session ID Manager
Mar 20, 2023.
In this article, we will look in to SessionIdManger and how to customise it.
Session Management In Angular
Mar 01, 2023.
In this article, you will learn about session management in angular.
Exploring Data Anonymization Techniques To Prevent Session Replay Attacks In E-Commerce
Feb 20, 2023.
In this article, you will learn how to explore Data Anonymization Techniques to Prevent Session Replay Attacks in E-Commerce.
Preventing Session Replay Attacks - Safeguarding Azure Cloud Websites
Feb 20, 2023.
Session replay attacks are a type of web application attack where an attacker records a user's interactions with a website or web application, including login credentials, and then replays them to impersonate the user.
State Management In Blazor
Jan 07, 2023.
We will talk about the state management features that Blazor offers in this article. .NET 6 will be the target platform for this application's design, and Visual Studio 2022 will be used to write the code.
Enable Session State In SharePoint 2019
Nov 22, 2022.
In this article, you will learn how to enable Session State in SharePoint 2019.
How To Add Custom Add-Ins To MS Word
Oct 07, 2022.
This article shows you how to add add-ins to word desktop.
How To Add Add-Ins In PowerPoint
Sep 20, 2022.
In this article, you will learn how to add custom add-ins.
How To Deploy Excel Add-ins To Your Organization
Aug 12, 2022.
This article show you how to deploy excel add-ins in your organization.
How To Add Custom Add-Ins To Excel
Jul 05, 2022.
In this article, you will learn how to add Excel add-ins.
How To Deploy PowerPoint Add-ins To Your Organization
Jun 15, 2022.
This article shows you, how to deploy PowerPoint add-ins.
How To Deploy Word Add-Ins To Your Organization
Jun 03, 2022.
This article show you how to deploy word add-ins to your organization.
How To Create Excel Add-Ins?
May 10, 2022.
Create an Excel add-in using HTML, CSS, JavaScript, or C# to enhance functionality across various platforms, including Excel for Windows, Mac, and Office 365. Install Yeoman and the generator-office globally, generate a project, and run it using npm commands. Test your add-in in Excel’s Home Tab.
How To Create PowerPoint Add-Ins
Apr 04, 2022.
in this article, I will show you how to create PowerPoint Add-ins
How To Deploy Outlook Add-ins To Your Organization
Mar 19, 2022.
This article provides a comprehensive guide on deploying Outlook add-ins to organizations for other users. It covers the step-by-step process of deploying add-ins using Office 365, ensuring easy access for users within the organization.
How To Publish Outlook Add-Ins Using Visual Studio Code
Mar 17, 2022.
In this article, you will learn how to publish outlook add-ins using visual studio code.
How To Create Word Add-Ins
Mar 16, 2022.
This article outlines the steps to create and run a Word add-in using technologies like HTML, CSS, JavaScript, and C#. Word add-ins enhance functionality and work across platforms, including Windows, Mac, and Office 365.
How To Create Outlook Add-ins
Nov 24, 2021.
Creating Outlook add-ins involves using tools like VSTO or Office JavaScript API, programming in C# or JavaScript, and customizing UI elements like ribbons and task panes. Deployment via Office Store and ensuring security are key considerations.
How To Get The Session Details In Dynamics 365 CRM Online
Nov 02, 2021.
In this article, you will learn how to get the session details in dynamics 365 crm online?
Web Security Vulnerabilities On User Session And Username Iteration
Jul 29, 2021.
In this article, you will learn about Web Security Vulnerabilities on User Session and Username Iteration.
View Variables In .NET Core MVC
Jun 21, 2021.
This article discuss View Variables In .NET Core MVC, such as ViewBag, ViewData, TempData, and Session.
View Variables In .NET MVC
Jun 14, 2021.
This article discuss the View Variables, such as ViewData, ViewBag, TempData and Session in MVC
Bind ASP Model To SelectList In _Layout Page Using Sessions In ASP.NET Core
Mar 31, 2021.
In this article we are going to use the sessions to bind an ASP Model to dropdownList in _Layout.cshtml page
Blazor Server - How To Store Encrypted Session Data In The Browser
Dec 18, 2020.
Learn how to enhance security in your Blazor Server applications by storing encrypted session data in the browser. Explore techniques to safeguard sensitive user information using ASP.NET Core and client-side storage mechanisms.
Overview Of Yeoman Generator For Office Add-ins
Dec 08, 2020.
Discover how to streamline Office Add-in development using Yeoman Generator. This overview covers setup, tools, and JavaScript API integration for efficient creation of custom Office solutions.
Creating Azure Service Bus Queues And Sending Messages To Queues
Nov 23, 2020.
Service buses facilitate decoupling of applications/services via messaging queues. Queues created through Azure Portal or Service Bus Explorer. Settings like Enable Sessions and Dead Lettering enhance functionality. Configuration via Microsoft.Azure.ServiceBus. SendMessageAsync method sends messages.
Use Of Session Attributes In A Custom Alexa Skill
Nov 02, 2020.
In this article I am going to demonstrate how to use a session attribute in a custom Alexa skill
State Management In MVC
Sep 28, 2020.
In this article, you will learn about State Management in MVC.
Session Fixation - Exercise
Sep 11, 2020.
In this article, we are going to look at Session Fixation in ASP.NET web applications with some code examples in VB.NET.
Session Handling Best Practices
Sep 04, 2020.
In this article, you will learn about session handling best practices.
Session Tracking Using The HttpSession Interface In Servlets
Aug 26, 2020.
In this article, you will learn about session tracking is very important as it helps to keep track of the request from the same client.
Session Fixation
Aug 21, 2020.
In this article, you will learn about Session Fixation.
Develop Outlook Add-ins with SharePoint Framework
Feb 25, 2020.
In this article, you will learn how to develop Outlook Add-ins with SharePoint Framework.
Create And Deploy Outlook Add-Ins Using SPFx 1.10
Feb 04, 2020.
Create And Deploy Outlook Add-Ins Using SPFx 1.10" is a guide for integrating custom functionalities into Microsoft Outlook using SharePoint Framework (SPFx) version 1.10. It offers insights into developing, deploying, and managing Outlook add-ins within the Microsoft 365 ecosystem.
Overview Of Session In ASP.NET
Aug 27, 2019.
In this article, I will explain the concept of ASP.NET sessions - how to create a session, and how we can use it in a session.
HTML5 Web Storage /Local Storage And Session Storage
Aug 16, 2019.
In this session, I will discuss the details of web storage and how we can implement web storage.
Session Wrapper Design Pattern For ASP.NET Core
Jul 26, 2019.
In this article, we will learn to access the Session data in a Typed manner by getting IntelliSense support.
All About Sessions In ASP.NET Core
Jul 25, 2019.
HTTP is a stateless protocol, so we need some mechanism to maintain our App State. Server Side Session has been a way to maintain our state on the server side. In this article we'll see what differences ASP.NET Core has introduced regarding SESSION.
Angular 7 Login With Session Authentication Using React Form
Jun 21, 2019.
In this article, you will learn about Angular 7 login with session authentication using the React form.
Session Bean In Java
Apr 01, 2019.
Session bean in Java is reusable component that contains business logic. In this article, you will learn about session bean in java.
How To Create A Web Service Project In .NET Using Visual Studio
Dec 18, 2018.
Learn to create and consume web services in .NET using Visual Studio. This tutorial covers creating ASP.NET web applications, defining WebMethods, adding service references, and integrating services into web forms using C#. Master XML, SOAP, WSDL, and UDDI protocols for robust service interactions.
Passing Data From Controller To View Using Session - Part Five
Oct 09, 2018.
In this article, you will learn how to pass strongly typed data from Controller to View using session, in which firstly, you should make a model class then populate its properties with some data then pass that object to the session as Value and pass magic Key as a string.
Passing Data From Controller To View With TempData - Part Four
Oct 04, 2018.
Passing Data From Controller To View With TempData - Part Four" demonstrates using TempData in ASP.NET MVC to transfer temporary data between controller and view, facilitating efficient communication and enhancing user experience.
Session Facade Design Pattern
Aug 20, 2018.
In developing software its very important to use proper design patterns,In learning design patterns its important to Observe which design pattern properly fit on our problem and how we use appropriate patterns..its usual to misuse design patterns on problem.so its very important to finds a proper design pattern on a given problem in software development.
Install add-ins In SharePoint Using Office 365 CLI
Jun 14, 2018.
I describe how to move SharePoint add-ins to app catalog and install using Office 365 CLI
How To Register/ Unregister SharePoint Add-Ins Using PowerShell
Jun 04, 2018.
Suppose you would like to have the remote components of a provider-hosted SharePoint Add-in to interact with SharePoint, what should you do? You should first register with the Azure ACS cloud-based service and the SharePoint App Management Service of the tenancy or farm. Let us now dive straight into how to register/unregister SharePoint add-ins.
Local Authentication Using Node.js
Apr 02, 2018.
Authentication means validating your credentials like username and password to confirm your identity. The system or application confirms that you are the true user for accessing the private or confidential data. Authorization is a process of verifying that you have access to do something.
Automating SVN Check-Ins And Building A Project Via Jenkins
Feb 05, 2018.
In this article, we learn to automate SVN Check-Ins and building a project via Jenkins.
How To Use Sessions In ASP.NET Core
Jan 16, 2018.
In this article, we will learn the very simple way to use Sessions state in ASP.NET Core applications.
ASP.NET Core 2.0 Session State
Oct 09, 2017.
Using an empty project from a previous post, amend Startup class ConfigureServicee() method, and add services for session and its backing store.
Moving MVC Session State In Azure
Jun 17, 2017.
This article is for developers who are planning to move their MVC application to an Azure environment. This will also work as an alternative of default SQL Server session state in an MVC application.
Session State In ASP.NET Core And MVC Core
Jun 10, 2017.
Explore session state management in ASP.NET Core and MVC Core, covering how to store and retrieve session data, manage state across user requests, and utilize features like middleware, in-memory cache, and distributed sessions for efficient web application performance.
Configuring Redis Session State In ASP.NET Core
Mar 03, 2017.
This article describes the steps required to configure Redis as a storage mechanism for session state in an ASP.NET Core MVC Application.
Configure SQL Server Session State In ASP.NET Core
Mar 01, 2017.
This guide covers setting up SQL Server as a session storage provider, configuring the connection string, enabling session middleware, and ensuring session persistence for scalable web applications.
Getting Started With O365 - SharePoint-Hosted Add-Ins Using JSOM
Feb 28, 2017.
In this article, you will learn about SharePoint-hosted add-ins, using JSOM.
Session State In ASP.NET Core
Feb 25, 2017.
ASP.NET Core sessions allow storing user data between requests. Sessions use a SessionId stored in a cookie, which is sent with each request. Sessions can be configured as in-memory (In-Proc) or distributed (Out-Proc) and are managed using Microsoft.AspNetCore.Session package.
Practical Approach To ASP.NET Web Services - Part Three - Session State In A Web Service
Dec 05, 2016.
In this article, you will learn about Session State in a Web Service using ASP.NET.
AJAX In ASP.NET
Nov 15, 2016.
AJAX (Asynchronous JavaScript and XML) enhances web applications by enabling asynchronous data retrieval from servers without reloading the entire page. Utilizing XMLHttpRequest and JSON, it boosts interactivity, and responsiveness, and reduces server traffic.
ASP.NET MVC - TempData - A Closer Look
Oct 17, 2016.
Explore the intricacies of TempData in ASP.NET MVC with this insightful guide. Learn how TempData facilitates temporary data storage across requests within controllers, its role in maintaining state between actions, and best practices for efficient data management.
Creating SharePoint Hosted Add-ins In SharePoint Server 2016
Sep 25, 2016.
In this article, you will learn how to create SharePoint Hosted Add-ins in SharePoint Server 2016.
Configure Environment For Add-Ins In SharePoint 2016
Sep 16, 2016.
In this article, you will learn how to configure environment for add-ins in SharePoint 2016.
Throttling In WCF: Concurrent Instance and Session - Part Two
Jul 20, 2016.
In this article, you will learn about concurrent instance and session, using throttling in WCF.
Broken Authentication And Session Management And Its Prevention Mechanism
Jul 19, 2016.
In this article, you will learn about broken authentication and session management and its prevention mechanism.
Properties Of WebMethod Attribute In Web Service - Part Four
Jun 14, 2016.
In this article, you will learn about properties of WebMethod attribute in a Web Service.
Overloading WebMethod In ASP.NET Web Service - Part Five
Jun 14, 2016.
In this article, you will learn about how we can overload a Web Method in Web Service.
Azure App Service: Sessions Management in Load Balancing Environment Using Redis Cache
Jun 12, 2016.
In this article we will learn how sessions are maintained in a load balancing environment using Redis Cache.
Manage Session State In Web Service - Part Three
Jun 11, 2016.
In this article, I'm going to explain how we can use ASP.NET Session state in a Web Service.
SharePoint Add-ins (SharePoint Hosted Add-in) - Part Two
May 28, 2016.
In this multi part series, this is part two. In this article I’ll try to cover SharePoint hosted add-in with example.
Upgrade SharePoint Hosted Add-Ins(Apps) in SharePoint 2013
May 22, 2016.
In this article you will learn how to Upgrade SharePoint Hosted Add-Ins(Apps) in SharePoint 2013.
SharePoint Add-ins (SharePoint App) - Part One
May 16, 2016.
Microsoft renamed "apps for SharePoint" to "SharePoint Add-ins." A SharePoint Tenancy, introduced in SharePoint 2010, is a set of site collections managed as a unit. In Office 365, organizations create tenancies for SharePoint Online.
Check Session Status From Client Side Using Ajax In ASP.NET MVC
Apr 25, 2016.
Learn how to efficiently check session status from the client side using Ajax in ASP.NET MVC. This tutorial covers the implementation of Ajax requests to verify session validity, ensuring seamless user experience.