Events in C# are a way for a class to provide notifications to clients of that class when some interesting thing happens to an object. The most familiar use for events is in graphical user interfaces; typically, the classes that represent controls in the interface have events that are notified when the user does something…
Category: Cheap Windows Hosting
Using SQL to Build a Secure Password Storage System in ASP.NET Web Forms
What exactly is Password Hashing? The process of transforming a user’s plain-text password into an irreversible and fixed-length string of characters is known as password hashing. The password hash string is then kept in the database instead of the original password. Why is Password Hashing Used? The storage of plain-text passwords in a database poses…
SQL Server Hosting Tutorial : Encryption of Stored Procedures in SQL Server
The stored procedure can be encrypted. When you have complex business logics and want to hide the logic implementation then the schema of the stored procedure can be encrypted. The sql server do not have any mechanism to decrypt the encrypted stored procedure. They have store manually. CREATE PROCEDURE Proc_RetrieveProducts WITH ENCRYPTION AS BEGIN SET…
People Web Part in SharePoint Online
The “People” web part in SharePoint Online allows you to display information about people within your organization. This web part displays the user’s profile picture, contact information, job role, and additional details. Adding People web part to SharePoint online page To add a People web part to a SharePoint Online page, enter the Edit mode…
Package Managers in JavaScript
As a JavaScript developer, choosing the right package manager is crucial to your productivity and sanity. The three contenders in the battle are npm, Yarn, and pnpm. In this post, we’ll compare these package managers to see which reigns supreme. npm The Node Package Manager (npm) is the default option that comes included with Node.js….