Resources  
  • Activate & Deactivate Account Record in Dynamic 365 with PowerShell Mar 28, 2024. InteractiveMode prompts user for login in Dynamics CRM, storing connection in $conn. BypassPluginExecution set to true avoids plugin execution.Set-CrmRecordState modifies record state in CRM using specified entity, ID, and state/status codes.
  • Data Binding in AngularMar 23, 2024. Data binding serves as the communication bridge between the template (representing the view) and the component (housing the application's logic and data).
  • Creating Global Option Sets & Using Them Effectively in CRMMar 18, 2024. To create a Global Option Set in Dynamics 365, define a set of standardized values applicable across multiple entities. Then, reference this set when creating option set fields, ensuring consistent data entry and easier management across the CRM system.
  • Introduction To Term Store Management in SharePoint OnlineMar 12, 2024. In this article we will discuss – Introduction To Term Store Management in SharePoint Online And How to create Term Store using PowerShell.
  • Set the Default Name for Connected Chats in Dynamics 365Mar 06, 2024. As an administrator, configure Microsoft Dynamics 365 to set the chat title as the default record title. In Sales Hub app settings, under Chat and Collaborate, choose a record type, enable Auto-name chats, and save changes.
  • A Guide To Crafting Immutable Objects With C# 10's Init-Only PropertiesMar 06, 2024. Discover how C# 10's init-only properties empower developers to craft immutable objects with precision, enhancing code readability and maintainability. In this article, Ziggy Rafiq demonstrates how you can use this powerful feature to create robust and predictable software.
  • Main Difference Between Method and Computed Property in Vue.jsMar 05, 2024. In Vue.js, methods and computed properties serve distinct roles. Methods are JavaScript functions invoked in response to events, while computed properties cache values based on dependencies, enhancing performance for derived data manipulation.
  • What are Properties in C#? Mar 04, 2024. In this article, we will learn about properties in C#, different types of properties, how to define and use them, and some best practices when working with properties in C#, properties in C# are a way to encapsulate data and provide controlled access to it.
  • Explain Vue.js Computed PropertiesMar 04, 2024. Vue.js, a progressive JavaScript framework, provides developers with powerful tools to create dynamic and responsive web applications. One such tool that significantly enhances the reactivity of your Vue components is computed properties.
  • SQL Tuning - Effective Strategies with Practical ExamplesMar 03, 2024. SQL Tuning — Effective Strategies with Practical Examples
  • Bulk Add Terms, Term Sets, and Groups with PowerShell in SharePointFeb 29, 2024. This blog post provides step-by-step instructions on process of executing PowerShell scripts to import term store metadata elements into SharePoint, automating the creation and management of taxonomy structures.
  • What is Vue.js Watch Property?Feb 29, 2024. Learn Vue.js's watch property, a powerful feature allowing custom logic reactions to changes in data, computed properties, or reactive values. Utilize object-based and immediate watchers for efficient state management.
  • Mastering Pattern Matching in C#Feb 28, 2024. Mastering Pattern Matching in C# provides comprehensive insights into leveraging pattern matching techniques to enhance code readability and efficiency. From type patterns to constant patterns, property patterns, and more, this guide equips developers with the skills needed to write cleaner and more expressive C# code.
  • Creating Cohorts Using Custom Properties in Application InsightsFeb 27, 2024. In this article, we will learn how to leverage custom properties in Application Insights to create cohorts for in-depth user behavior analysis.
  • How to Set Long Expiry to JWT Token?Feb 26, 2024. To set a long expiry time for a JSON Web Token (JWT) in C#, you need to configure the token's expiration claim accordingly.
  • Trigger Creation: Set Action on Customer Record Create/UpdateFeb 21, 2024. Learn to automate database actions by creating triggers. Choose the trigger name and action type. Execute actions when customer records are created or updated. Enhance database functionality and efficiency with automated processes.
  • How to Generate a Popup Message Box in Power AppsFeb 16, 2024. This article guides us through implementing a popup message box in Power Apps for deleting gallery items. A standard gallery with a delete button is used. Clicking it triggers a confirmation alert. 'Delete' removes the item, 'Cancel' dismisses.
  • Setting up Micro Frontend with latest version on AngularFeb 11, 2024. Discover step-by-step instructions and best practices for setting up scalable, modular applications using the latest features and tools. Dive into the world of micro frontend architecture and learn how to seamlessly integrate independent Angular applications into a unified, cohesive user experience. From setup to running it, this comprehensive guide has everything you need to level up your development workflow and build modern, maintainable web applications with ease.
  • Implementation of Collection View in .NET MAUIFeb 02, 2024. In this article, I will explain MAUI Collection View implementation using Visual Studio 2022. .NET MAUI Collection View is a view for presenting lists of data using different layout specifications. Collection View should be used for presenting lists of data that require scrolling or selection.
  • Set Object in ES7 and TypeScriptJan 16, 2024. The JavaScript Set object is a versatile tool for managing collections with unique values, accommodating various data types, including both primitive values and object references. In this article, we'll dive into the capabilities of the Set object in ES7 (ECMAScript 2016) and explore its usage in TypeScript.
  • What Are the Different Ways to Create Filters in Vue.js Jan 16, 2024. In this article, we will learn about filters in Vue.js for formatting and transforming data in templates. Learn about global filters, local filters, inline filters, computed properties, and filter functions to enhance your Vue.js applications.
  • Setting Up Python LocallyJan 08, 2024. Throughout this article, we will delve into the process of acquiring a suitable Python installer and subsequently executing the installation on your local machine using said installer.
  • How to set Custom help URL in Dynamics 365Jan 08, 2024. Gain administration access to CRM, then navigate to Advanced Settings, Administration, and System Settings. In the General Tab, locate "Set Custom Help URL" to enable custom help for entities and set a Global Custom Help URL. Click OK to apply.
  • Set Interval in JavaScriptDec 19, 2023. Set Interval in JavaScript.
  • Understanding Dependency Injection in C#Dec 18, 2023. This article explores Dependency Injection (DI) in C#, explaining its types (constructor, property, and method injection) and demonstrating its implementation using a UserService and a SqlUserRepository for improved maintainability and testability.
  • Setting up SharePoint app-only principal with App RegistrationDec 01, 2023. The article explains setting up App only principal access to SharePoint online sites using Azure AD Application Registration.
  • How to create a Virtual Machine Scale Set (VMSS) using Microsoft AzureNov 29, 2023. How to create a Virtual Machine Scale Set (VMSS) using Microsoft Azure.
  • How to Set Up a Pull Request in Azure DevOpsNov 28, 2023. A pull request (PR) is more than a notification; it's a dedicated space for collaborative code discussion. It ensures code familiarity, knowledge sharing, and early bug detection. Setting up a pull request in Azure involves defining reviewers, requesting linked work items for clarity, and configuring automatic notifications for specific reviewers.
  • How to Set Up Microsoft Sentinel?Nov 28, 2023. How to Set Up Microsoft Sentinel. Set up Microsoft Sentinel with ease using this step-by-step guide. Learn to navigate the Azure portal, create a new workspace, and install necessary components, ensuring comprehensive threat intelligence and security analytics for your organization. Stay tuned for Series-02, which covers data connector configuration and activity data production in Microsoft Sentinel.
  • Reading properties of an object in C#Nov 26, 2023. This article explores two ways to read the properties of an object in C# without knowing its type at compile time: reflection and dynamic keyword. Reflection involves inspecting and manipulating metadata at runtime, providing flexibility but with potential performance drawbacks. On the other hand, the dynamic keyword allows for late-binding, bypassing static type checking, but may result in runtime exceptions and relies on the Dynamic Language Runtime (DLR). The choice between reflection and dynamic depends on specific needs and scenarios.
  • How To Select an Avatar Image from Popup to Set as My Profile Picture In Blazor?Nov 22, 2023. In this article, we have learned how to show avatar images as profile pictures.
  • Empowering Developers with .NET 8Nov 20, 2023. Step into the realm of .NET 8, the latest iteration of Microsoft's open-source platform that empowers developers to craft cutting-edge applications. With its focus on enhanced performance, cloud-native capabilities, and developer productivity, .NET 8 has revolutionized the way we build software.
  • How to set up Service Bus Queue Messages using Service Bus ExplorerNov 15, 2023. In this article, we will learn to Setup Service Bus Queue Message using Service Bus Explorer.
  • How to Set Up the Flutter Environment in Visual Studio Code on Windows SystemOct 30, 2023. This article will discuss about setting up Flutter on a Windows system is comprehensive and user-friendly. It covers the essential steps for installing Git, setting up the Flutter SDK, updating the system environment variables, installing Visual Studio Code, and integrating the necessary Flutter and Dart extensions. The inclusion of specific links to download Git, Flutter SDK, and Visual Studio Code enhances the practicality of the guide and simplifies the setup process for readers.
  • Setting Up PowerShell ISE In VS CodeOct 16, 2023. Setting up PowerShell ISE (Integrated Scripting Environment) in Visual Studio Code (VS Code) provides a streamlined environment for PowerShell scripting and automation tasks. This integration enhances the scripting experience, offering features like code completion, debugging capabilities, and seamless access to the extensive VS Code extension library. Configuring PowerShell ISE in VS Code simplifies script development, making it efficient and user-friendly.
  • How to Set-up Trezor Hadware Wallet?Oct 09, 2023. Secure your cryptocurrencies with Trezor Hardware Wallet - the ultimate shield against cyber threats and unauthorized access.
  • Reading Zip Files with SharpZip Library in .NETOct 03, 2023. SharpZipLib is a library for .NET that allows working with compressed files, particularly ZIP archives. To read a ZIP file using SharpZipLib, you first install the library and import the necessary namespaces. Then, you open the ZIP file using a `ZipFile` object, access its entries (files or folders), and process the entry data according to your application's needs. Finally, ensure to close the ZIP file properly to release associated resources.
  • Design a Snake game in BlazorSep 22, 2023. The Snake Game, with its roots tracing back to the 90’s arcade era. Thanks to Blazor, Let's give this timeless gem a new home on your web browser.
  • Setting Up Server-Side Google Tag Manager (GTM) with DockerSep 21, 2023. Learn how to set up Server-Side Google Tag Manager (GTM) using Docker for advanced tracking and data processing. Gain flexibility and control over your analytics toolbox effortlessly.
  • ACID Properties in SQL ServerSep 18, 2023. ACID Properties in SQL Server ensure Data Integrity during a transaction.
  • Field vs Property in C#Sep 18, 2023. In C# object-oriented programming (OOP), distinguishing between "fields" and "properties" is fundamental. Fields directly store data, typically with private or protected access modifiers for encapsulation. They're ideal for managing an object's internal state. Properties, on the other hand, provide controlled access to fields via getter and setter methods, allowing validation and logic integration.
  • Setting Business Constraint for Uniqueness of a Composite Key in Master Data ServicesSep 17, 2023. Setting Business Constraint for Unique Combination of Multiple Columns in Master Data Services
  • Transaction Control Language (TCL) Commands in SQLSep 14, 2023. In this article we will learn about Transaction Control Language (TCL) Commands in SQL.
  • Setting Up Azure Blob Storage EncryptionSep 13, 2023. Learn how to configure encryption for Azure Blob Storage to enhance data security. Follow these steps to establish encryption using customer-managed keys in Microsoft Azure.
  • Dependency Injection in C# .NET With ExamplesSep 12, 2023. Discover Dependency Injection in C# .NET: Learn how to achieve flexible, maintainable, and loosely coupled code by decoupling components in your software. Explore constructor, property, and method injection with practical examples.
  • Understanding Vue.js Computed Properties Sep 04, 2023. Computed properties" is a core concept in Vue.js, a popular JavaScript framework for building user interfaces. Computed properties allow you to declare properties in your Vue components that are calculated based on other data properties. They provide a way to perform data manipulation and filtering in a declarative and efficient manner.
  • SQL Server ACID PropertiesSep 01, 2023. Understanding SQL Server ACID(Atomicity, Consistency, Isolation, Durability) Properties.
  • Setting Up a VPS on AzureAug 24, 2023. A Step-by-Step Guide to Setting Up a VPS on Azure" is a resource that provides a detailed and sequential walkthrough of creating and configuring a Virtual Private Server (VPS) on the Microsoft Azure cloud platform. The guide likely covers essential aspects such as provisioning the server, choosing specifications, connecting to it, and setting up necessary services, giving readers a clear path to establishing their own virtual server infrastructure.
  • The Role of Java Standard Tag Library- EL (JSTL-EL) in JSPAug 23, 2023. The JSTL EL or JSTL Expression Language is used by JSP Programmer in order to avoid the usage of Java Code for accessing data.
  • Set Status Bar Color for SQL Server Query EditorAug 18, 2023. This article will discuss how to set status bar color for a SQL Server Query Editor
  • JavaScript Symbols: Unique Identifiers and Private PropertiesAug 09, 2023. Explore the power and applications of JavaScript symbols. Learn about unique identifiers, private properties, iterators, and more. A comprehensive guide.
  • Standard Action in JSPAug 08, 2023. Introduction: Standard actions in JSP use the <jsp>prefix. The attributes in JSP standard actions are always case sensitive. Values inside the attributes must be enclosed in double quotes.
  • How to Set Up Twilio WhatsApp API?Aug 01, 2023. Learn how to set up a Twilio account and sandbox environment for sending WhatsApp messages. An easy step-by-step guide is provided.
  • How to Set Up One-Way WhatsApp Messaging Using Power Automate and Twilio?Aug 01, 2023. Configure one way whatsapp messaging using Power automate to Twillio
  • Creating Custom Properties in User Profiles in SharePoint OnlineJul 24, 2023. in this article you will be find how to create custom properties in user profile
  • How to Create Stored Procedures for CRUD?Jul 23, 2023. In this article, we will learn how we can create Stored Procedures for CRUD operations in SQL Server.
  • How to Iterate Over JavaScript Object's Properties and Values?Jul 19, 2023. In this article, we will learn How to Iterate Over JavaScript Object's Properties and Values
  • Configuring Regional Settings in SharePoint OnlineJul 07, 2023. In this Article, we will explore how to configure regional settings in SharePoint Online and the various adjustments you can make to tailor your site's regional preferences.
  • Including And Excluding Properties from Model Binding Using the Bind Attribute Jul 06, 2023. Using the 'Bind' feature in ASP.NET MVC, you can include and exclude properties from model binding. You can specify which attributes should be included or excluded during model binding using the 'Bind' feature. To include particular characteristics during model binding, utilize the 'Include' property of the 'Bind' attribute. Here is one instance.
  • Including And Excluding Properties from Model Binding Using InterfacesJul 06, 2023. You can specify distinct interfaces for various sets of characteristics and have your model implement those interfaces if you want to include or omit certain properties from model binding. After that, you can bind your model to that interface type to decide which properties are added when the model is bound.
  • Set Up The Node Environment and Run a Simple Node Server ProjectJul 03, 2023. Set Up The Node Environment and Run a Simple Node Server Project With Express framework Step by step
  • AutoMapper in ASP.Net Core 7 Web APIJun 15, 2023. When developing apps, it's common to wish to map items to either comparable or different kinds. Why do you frequently require this? The database tables of the employed database are typically mapped with the models (also known as entities) in an application. As a result, there is frequently a discrepancy between the model class properties and the data transfer object class properties. You may run into issues because of having to write a lot of boilerplate code to convert instances of disparate types. A large application, like an ERP, could require a lot of models and data transfer object classes. Writing code to perform the mapping manually would be time-consuming. Here, programs like AutoMapper can be useful.
  • Collections in KotlinJun 12, 2023. The article wraps Collections in Kotlin and provides a summary or final thoughts on the topic.
  • How to Set the Authoring Version in the Canvas App?Jun 08, 2023. Step by step details to set the Authoring Version in the Microsoft Canvas Apps in the Power Platform Environment
  • Dot Vs Bracket Notation in JavascriptMay 30, 2023. In this article, we will learn Dot Vs Bracket Notation in Javascript
  • Screen Resolution in Desktop flow using Microsoft Power AutomateMay 26, 2023. Reading this article, you can learn how to get or set the screen resolution using the Get screen resolution action and Set screen resolution action in a workstation group of actions with Desktop flow using Microsoft Power Automate.
  • Google Bard A Potential Game-Changer Set to Dethrone ChatGPTMay 13, 2023. Google Bard, the revolutionary language model chatbot, is now available in India and aims to outperform ChatGPT.
  • What is Tracked Properties in Power AutomateMay 03, 2023. In this article, we will learn about what is Tracked Properties in Power Automate, how it is useful and how we can use it.
  • Static Methods Vs. Non-Static Methods In C#Apr 27, 2023. The difference between static and non-static methods in C#.
  • How we can use forEach with Map and Set In JavaScriptApr 25, 2023. In this article, we will see How we can use forEach with Maps and Sets in JavaScript
  • How To Set Variable And Payload In MuleSoftApr 21, 2023. In this article, you will learn how to Set Variable and Set Payload in MuleSoft and how to see the variable result in Postman.
  • What is Kotlin and Setting Up the Development EnvironmentApr 20, 2023. This article will be a whole guild to starting your journey on kotlin programming.
  • Securely Set Up Your Algorand Account on Ledger NanoApr 18, 2023. Using this guide you will learn how you can set up an algorand account on the ledger Nano
  • C# 12 Preview Features: Improving Productivity and PerformanceApr 17, 2023. C# 12 Preview Features: Improving Productivity and Performance
  • Get User Properties With “Get User Profile” Action In Power AutomateApr 11, 2023. This article explains how to retrieve a user's profile in Microsoft Power Automate using the "Get user profile (V2)" action from the "Office 365 Users" connector. This action provides user profile information in a JSON object that can be utilized in subsequent steps.
  • Get User Properties With Graph API In Power AutomateApr 10, 2023. In this article, you'll discover how to retrieve user profiles in Microsoft Power Automate using an HTTP request via the Graph API. Learn how to filter user profile information for a specific user based on their ‘user principal name’ or other parameters.
  • How To Set And Get Cookies In Angular With Example Apr 10, 2023. In this article, you will learn how to set and get cookies in angular with example.
  • Power Automate - Send Notification With File Properties TableApr 07, 2023. In this article we will see how we can read the file properties of all the files in a folder of SharePoint online document library and send these properties in tabular format with custom CSS styling in email notification.
  • Copy All Properties Of One Object Into Another Without Any Package In C#Mar 27, 2023. In this article we are going to map one object to another object which are same type and also different type. Some properties are exact same and some are different in case.
  • Power Apps - Fetch Image Property From Multi People Picker ColumnMar 27, 2023. In this article, you will learn about how to fetch image property from multi people picker column in Power Apps.
  • Power Apps - Fetch Image Property From Multi People Picker Column Based On Dropdown SelectionMar 27, 2023. In this article, you will learn how to fetch image property from multi people picker column based on dropdown selection.
  • What Is The Purpose Of The 'Prototype' Property In JavaScript?Mar 17, 2023. What is the 'prototype' property in JavaScript and how to use it in your web page.
  • Navigator.online Property In JavaScriptMar 15, 2023. This article describes with an example whether the user is connected to the internet using navigator.online property in javascript.
  • 3 Methods To Set Up Effective Communication In Your OrganizationMar 14, 2023. In this article, you will learn about 3 methods to set up effective communication in your organization.
  • A Comprehensive Guide to the CSS Gap Property: Improving Web LayoutsMar 07, 2023. Learn about the CSS Gap Property and how it simplifies adding space between elements. Discover how to use this powerful property to improve your code and fine-tune spacing. Check out our comparison with other similar properties and explore browser compatibility.
  • How To Set Up Routing In An Angular ApplicationMar 06, 2023. In this article, you will learn how to set up routing in an Angular application.
  • Manage Disk Encryption Keys For Azure Virtual MachinesFeb 27, 2023. In this article, I will guide you to manage disk encryption keys for Azure virtual machine by using azure Key vault, Azure Key Vault for managing encryption keys that can be used for encrypting our data disk
  • How To Set Environmental Variables In AngularJSFeb 06, 2023. In this article, you will learn how to set Environmental Variables in AngularJS.
  • Setting Up Docker In Linux VM For Container AppsFeb 03, 2023. In this article, we will see how to set up docker in Linux VM for building and shipping container applications.
  • How To Check If An Array Is Empty In C#Feb 01, 2023. In this article, we will explore various methods to determine if an array is empty in C#. The Length property, Count() extension method of LINQ or the IsNullOrEmpty() method can be used to check if the array is empty. If any of these methods return 0 or the array is null, it can be determined that the array is empty.
  • Understanding Google Compute Engine And Set Up First VM In Google Cloud Platform Jan 18, 2023. Google compute engines enables us to deploy our applications in virtual servers in cloud environment. GCE is the service to provision and manage virtual machines. In this article we will go step by step to create our first VM using GCE.
  • Using Change Tokens In .NET 7Jan 05, 2023. In this article, you will learn how to use change tokens in .NET 7.
  • Understand Properties And Events Of Screens In PowerAppsDec 29, 2022. In this article, you will learn about properties and events associated with PowerApps screen.
  • How to Automatically Set Input Field Focus When Switching Tab Panels (Source Code Included)Dec 17, 2022. Learn how to use a simple JavaScript library and intermediate CSS selectors to set focus to the desired form field as tabs are toggled.
  • Create Multiple Copies Of A Site Page, Rename And Update Properties Using Power Automate Dec 05, 2022. In this article, we will learn to create multiple copies of a SharePoint site page, rename and update its properties using Power Automate "Send an HTTP request to SharePoint" action.
  • How To Set Up Ledger Nano SDec 02, 2022. In this article, I will discuss Ledger Nano S, a cryptocurrency hardware wallet, and how we can set it up.
  • Pass And Save A Set Of Values From Grid Using AJAX In ASP.NETNov 30, 2022. To pass and save the set of values from the grid / tables using AJAX with a simple C# example
  • Set The Auto Delete For Old Azure Blobs Based On The Last Modified Time Using Azure Logic AppNov 30, 2022. In this article, we will going to see about How to set the Auto delete for old Azure blobs based on the last modified time using Azure Logic App
  • Blazor Data And Property BindingNov 23, 2022. I will explain how the data binding works in Blazor. We can bind data both one-way and two-way in Blazor.
  • Set Auto Tier Azure Blobs Using Azure Logic AppNov 14, 2022. Automate Azure Blob Storage tiering effortlessly with Azure Logic App. Utilize Blob Lifecycle Management, Azure Management APIs, and JSON for seamless data management and cost optimization, enhancing storage efficiency effortlessly.

About set-property-in-jsp

NA

OUR TRAINING