Session Management and Security in .NET Applications
Overview Managing sessions securely is a fundamental part of protecting any .NET-based application. If session identifiers or cookies are not properly handled, attackers may exploit weaknesses through techniques such as session hijacking or fixation. The following sections describe common issues
How to switch the Mysql authentication method from auth_socket to mysql_native_password
In this article, we will come to know how we can switch the MySQL root user default (Auth_Socket) authentication method to mysql_native_password. Auth_socket Authentication Auth_socket authentication is a server-side default authentication plugin that is used to authenticate the client input
How to get list of all changes with files name in a Azure Branch
When we work with Source Control systems and work in a developer branch that is created from the main/master branch. Sometimes, there is a case when we have pushed multiple times in a branch but we need to check the
Using Developer Console in Salesforce
Executing Apex code in the developer console Login to Salesforce and switch to classic and click Developer Console Click to debug -> and click “Open Execute Anonymous Window” or Ctrl/E Write code in the window and execute as following After
Using Devexpress Grid Control with List object in Windows Form C#
From the toolbox window, check the Data and Analytics section in the toolbox menu and drag & drop the GridControl on your windows form. Devexpress Grid control uses Views to present data from a bound data source. With the help
Salesforce | Lightning Navigations in LWC
Lightning Navigations are used to generate a URL or navigate to a page reference. With lightning navigation, we can navigate to Pages, Records, Lists, Webpages, Custom tabs, Reports, etc. There are the steps to use the navigation in LWC: Step
How To Fix Busybox Initramfs Error On Linux based OS
Some time our OS boot process gets stuck to the BusyBox shell and ends up at the initramfs prompt. ERROR: —————————————- BusyBox v1.27.2 (Ubuntu 1:1.27.2-4ubuntu3.2) built-in shell (ash) Enter ‘help’ for a list of built-in commands. (initramfs) —————————————- SOLUTION: Type
Service layer in Angular
Angular service is very useful to organize business logic or data in the different components of an application. The methods written in the service file can be invoked from different typescript files of a component. The controller is responsible for
Hooks in React
Hooks are the new feature of the react. They let you use the state and other features of React without creating a class. They are mainly used to handle state and other side effects in react functional components. Side effects
Displaying the records from multiple related Salesforce Objects on a Lightning Web Component.
The records from a single Salesforce Object can simply be displayed in a Lightning Web Component by using the lightning datatable, but in order to display the records from multiple objects on the same Lightning Page, we need to use
