Related resources for RIA
  • Building A Login Form Using Material Design Control In Visual Studio 20177/26/2024 6:28:26 AM. This article demonstrates how to use Material Skin in Windows. Forms applications with Visual Studio 2017. It covers starting a project, installing Material Skin via NuGet, adding Material controls to
  • Overfitting and Underfitting in Machine Learning7/26/2024 6:08:59 AM. Overfitting and underfitting are critical concepts in machine learning. Overfitting occurs when a model learns the training data too well, capturing noise and failing to generalize. Underfitting happe
  • Tracking Visits and Visitor Details on PowerApps Page7/25/2024 12:07:39 PM. Learn to track unique page views in PowerApps by integrating SharePoint lists and using global variables. This guide covers designing lists, configuring PowerApps screens, and patching view counts. It
  • Control Form Requirement with Save or Submit Button7/23/2024 6:58:51 AM. Implement a "Save as Draft" feature to allow users to save and resume incomplete forms. Create buttons with distinct functionalities for saving drafts and submitting forms. Set form fields a
  • Dynamic Expansion Panel as a separate component.7/21/2024 7:54:06 AM. Create a dynamic expansion panel in Angular using Angular Material to display user personal and correspondence addresses. This involves defining components with TypeScript for logic, HTML for view, an
  • ModalPopup Sample in JavaScript7/19/2024 4:37:42 AM. This article explains how to create a ModalPopup in JavaScript. Additionally, it covers how to change font styles (bold, italic, normal) of a paragraph using JavaScript functions triggered by clicking
  • Serialization (2) - JSON Serialization7/17/2024 6:50:23 PM. This article will discuss JSON Serialization. Serialization is the process of converting an object into a stream of bytes to store the object or transmit it to memory, a database, or a file.
  • Serialization (1): in General7/17/2024 3:28:54 PM. This article discusses Serialization in general.
  • Discard Variable in C# .NET7/17/2024 12:17:22 PM. The discard variable (_), introduced in C# 7.0, allows developers to ignore values intentionally. It enhances code clarity by signaling unused data in tuples, pattern matching, out parameters, and LIN
  • Getting started with gRPC in .NET 8 using C# 127/11/2024 1:35:30 PM. Using C# 12 and gRPC in .NET 8, Ziggy Rafiq guides you through setting up your environment, defining services, and developing client and server applications with gRPC.
  • Implementing v2 and v3 reCaptcha using React7/10/2024 9:09:35 AM. CAPTCHA (Completely Automated Public Turing test to tell Computers and Humans Apart) is a security measure to differentiate between humans and bots. reCAPTCHA, a Google tool, enhances this by generati
  • C# Method Designed to Make a POST Request to a Web API Endpoint7/4/2024 5:31:08 AM. This guide covers API integration in C#, detailing serialization, encryption, HTTP requests, and error handling. Learn how to set up an API integration method, handle responses, and follow best practi
  • Annotations used with Spring Boot Applications7/1/2024 5:26:46 AM. Spring Boot simplifies Java application development with powerful annotations like @SpringBootApplication, @RestController, and @Service. These annotations automate configuration, enable RESTful servi
  • Understanding React Hook at a Glance6/28/2024 6:36:47 AM. React Hook at a Glance" provides a concise overview of React Hooks, the revolutionary feature introduced in React 16.8 that allows developers to use state and other React features in functional c
  • AJAX In ASP.NET6/27/2024 4:54:38 AM. 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 in
  • Real World Uses of Azure IoT Hub Device Twins6/24/2024 9:16:44 AM. Discover practical applications of Azure IoT Hub Device Twins in real-world scenarios. Explore how Device Twins facilitate remote device management, enable predictive maintenance, streamline firmware
  • Generating XML Root Node Having Colon-Via Serialization6/24/2024 9:00:23 AM. Generating XML dynamically with a defined schema involves handling namespaces and prefixes correctly. Using XmlElement and XmlAttribute classes helps serialize XML parts, but achieving a prefixed root
  • Local And Global Variables In Power Apps6/20/2024 6:44:06 AM. Local variables are temporary and screen-specific, declared using the UpdateContext function (e.g., UpdateContext({LocalVariableName: Value})). Global variables, declared with the Set function (e.g.,
  • Static Keyword In C#6/18/2024 10:47:06 AM. In this article, I'll discuss the C# static keyword, its purpose, and how to create static classes using C#. I'll also cover static variables, static methods, and static properties in C#.
  • Automate Marriage Certificates with Azure Document Intelligence6/18/2024 5:24:19 AM. This article explores how the Document Intelligence Marriage Certificate model uses advanced OCR technology to analyze and extract essential fields from marriage certificates. The process involves set
  • SonarQube Configuration For .NET Core Web API6/17/2024 11:23:22 AM. Learn to improve code quality using SonarQube for a .NET Core Web API project. Install JAVA, configure environment variables, and set up SonarQube server. Create a project, generate a token, and downl
  • Tutorial: Working With Windows Forms6/16/2024 2:37:12 PM. Learn C# basics with these Windows Forms tutorials! From simple form creation to event handling, explore code examples with TextBox, Button, MessageBox, and more. Ideal for beginners in .NET and Visua
  • Create Your Own Blockchain Devnet Without Code using AVA Cloud6/14/2024 10:46:06 AM. Learn how to create and connect to a blockchain subnet using AVA Cloud, with no coding required. Follow our step-by-step guide to set up your own subnet easily and quickly.
  • Free Book: C# Programming for Beginners6/14/2024 10:42:38 AM. Programming C# is a concise 56-page tutorial book aimed at beginners and students. Learn C# programming fundamentals, syntax, data types, and advanced topics like classes, arrays, and exception handli
  • Understanding Global Variables in Azure Data Factory6/13/2024 7:09:59 AM. Global variables in Azure Data Factory are user-defined variables accessible across different pipelines and activities within the same data factory. They store values like strings, numbers, dates, and
  • ASP.NET Core Sample Website - Calculator6/12/2024 10:29:15 AM. This article demonstrates creating a Web Calculator with .NET Core, covering database setup, Azure hosting, ASP.NET Core features, controller setup, views, models, and enum operations. Explore step-by
  • WCF Performance Tuning6/12/2024 10:10:04 AM. WCF (Windows Communication Foundation) enables network distributed services with a service-oriented approach. Improving its performance involves selecting proper bindings, understanding throttling, op
  • Create Repeating Section In PowerApps New Form - Step By Step - Part One6/12/2024 9:40:57 AM. This article guides you through creating a Repeating Section in PowerApps forms for New and Edit forms. Learn to store data in SharePoint lists, manage form navigation, and enhance user experience wit
  • Effective User Story Writing in Agile Development6/12/2024 6:38:58 AM. User stories are essential in Agile development, helping teams understand requirements from the user's perspective. This article guides you in writing effective user stories by focusing on key ele
  • Printing in ASP.NET6/11/2024 12:14:31 PM. Learn to print forms & controls in ASP.NET using PrintHelper class. Easily print GridView, DataGrid, TextBox, and more. Simple implementation with server-side rendering and client-side script.
  • Displaying Previous Current Next 2 Weeks in Power Apps Combo Box 6/11/2024 12:03:29 PM. This Power Apps script generates a ComboBox displaying the previous 2 weeks, current week, and next 2 weeks. It utilizes variables to set the current date, calculates date ranges based on weekdays, an
  • SQL Query Execution Understanding Process and Performance6/11/2024 11:37:51 AM. Understanding the SQL query execution order—from FROM and JOIN to WHERE, GROUP BY, HAVING, SELECT, ORDER BY, and LIMIT/OFFSET—is crucial for optimizing queries. Key techniques include indexing, optimi
  • The Art of JavaScript Hoisting: Understanding the Ins and Outs6/11/2024 9:11:02 AM. 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
  • Azure Anomaly Detector: Unveiling the Unexpected in Your Data6/10/2024 8:01:07 AM. The Azure Anomaly Detector is an AI service from Microsoft Azure that helps you find unusual patterns in your time series data. It's like having a built-in inspector for your data, automatically f
  • Create An ASP.NET MVC CRUD Application With Entity Framework Using AJAX Request And jQuery6/6/2024 7:49:20 AM. Develop an ASP.NET MVC CRUD app using Entity Framework for data management. Employ AJAX requests and jQuery for seamless, asynchronous interaction, enhancing user experience and responsiveness.
  • Variables In PowerApps6/6/2024 7:44:52 AM. Discover how to effectively use variables in PowerApps to enhance your app development. This guide covers the basics of creating, managing, and utilizing variables to store data, improve functionality
  • Convert an Embedded Resource into an XML File in WPF C#6/6/2024 4:49:04 AM. When working with embedded resources in a WPF application, it is important to follow specific steps to guarantee that your resources are properly included in the assembly and can be accessed during ru
  • Login And CRUD operations In ASP.NET Web API Using Angular 9 Web Application6/5/2024 11:33:20 AM. Learn to build a full-stack application with ASP.NET Web API and Angular 9. Perform login and CRUD operations using SQL Server. Utilize Angular Material for UI and Bootstrap for styling. Follow step-b
  • Configuring Log4Net With Database - A Tutorial For Beginners6/5/2024 5:35:32 AM. Log4Net is a framework for logging .NET applications. It is an open source library that can be used to log output for different targets like logging output in Text files, Database, Console, Mail (SMTP
  • Difference Between args and kwargs in Python6/5/2024 4:00:54 AM. Learn the difference between args and kwargs in Python. This article explains how *args handles a variable number of non-keyword (positional) arguments as a tuple, while kwargs manages keyworded (name
  • Exploring let, var, and const in JavaScript Declarations6/4/2024 12:15:53 PM. In JavaScript, choosing between var, let, and const is crucial for code behavior and maintainability. var is function-scoped and can be redeclared, while let and const are block-scoped. let allows rea
  • Introducing HybridCache The Future of .NET Caching6/4/2024 6:00:05 AM. HybridCache bridges gaps in .NET's IDistributedCache and IMemoryCache, introducing advanced capabilities like stampede protection and configurable serialization. It simplifies caching with a unifi
  • Integrating .NET Core API with WhatsApp for Push Notification6/3/2024 11:00:15 AM. Learn how to integrate .NET Core API with WhatsApp API to send push notifications and enhance user engagement with real-time messaging.
  • Arrow Function Variants in JavaScript6/3/2024 8:14:29 AM. Arrow functions in JavaScript offer concise syntax for writing functions. They simplify coding with features like no parameter handling, optional parentheses for single parameters, and streamlined fun
  • Create Impactful Project Timelines Milestones for Entrepreneurs6/3/2024 6:26:51 AM. Creating Impactful Project Timelines and Milestones as an Entrepreneur" focuses on strategic planning for entrepreneurs to achieve their goals. It emphasizes setting clear timelines and defining
  • Importance of While Loop and Table Variable in SQL Server5/31/2024 11:52:50 AM. Explore the significance of while loops and table variables in SQL Server. Harness the power of iterative processing, efficient data manipulation, and performance optimization for enhanced query execu
  • ASP.NET State Management Techniques Part 25/31/2024 10:08:40 AM. ASP.NET state management techniques include session, application, view state, cookies, query strings, and more. These manage data across requests, enhancing user experience and enabling data persisten
  • Read XML in C#5/31/2024 10:03:18 AM. Learn to parse and manipulate XML data in C# effortlessly. Utilize XML readers, XPath, or LINQ to XML for efficient XML processing. Handle XML documents, elements, attributes, and namespaces seamlessl
  • Common Table Expression(CTE) in SQL Server5/30/2024 12:12:43 PM. Learn about CTE, a SQL Server 2005 feature replacing temp tables. Understand its efficiency over temp storage methods, essential syntax, and diverse applications in query optimization. Examples illust
  • How to Integrate Solana Blockchain into C#?5/30/2024 6:05:39 AM. Learn how to integrate Solana blockchain with C# using Solnet library. Setup development environment, install dependencies, customize homepage, create services, controllers, and views for functionalit
  • What is Linux User Management Mastery?5/30/2024 4:08:47 AM. Learn to create, modify, and delete users, manage groups, and set permissions. Whether you're a beginner or experienced, this article provides essential commands and concepts to ensure secure and
  • C# Queue Tutorial5/28/2024 11:20:15 AM. Learn how to efficiently manage data using queues in C#. This comprehensive tutorial covers the basics of the Queue data structure, including enqueue and dequeue operations, practical examples, and be
  • Open a New Web Form in the Modal Popup of ASP.Net Application5/27/2024 11:59:32 AM. Learn how to create a Model Popup in ASP.NET using AjaxControlToolkit. This article explains opening a new WebForm as a Popup instead of a Panel, detailing steps from adding the Ajax Toolkit to config
  • Some Important Keywords of C#: Part 15/24/2024 9:36:12 AM. This is very simple part 1 article but will clear some of the concepts of C# for those who are learning or for those also who might have good knowledge but unfortunately miss these important keywords.
  • Learn Object Oriented Programming Using C#: Part 75/24/2024 7:26:51 AM. Delve deeper into Object-Oriented Programming with C# in Part 7 of our comprehensive tutorial series. Explore advanced concepts like inheritance, polymorphism, and more. Enhance your coding skills and
  • Learn Object Oriented Programming Using C#: Part 85/24/2024 7:17:07 AM. Dear reader's, this article is the fourth and last pillar of OOP. It's confusing for the beginners of OOP. So we provide an example in very simple words.
  • How To Build Blank Apps Using Microsoft PowerApps5/21/2024 9:49:45 AM. Learn how to build blank apps using Microsoft PowerApps in this comprehensive guide. Perfect for beginners, this tutorial walks you through the process of creating custom apps without any coding.
  • Embed Power BI in Dynamics 365 CE Dashboard with Environment Variables5/20/2024 11:10:41 AM. In this article, we learn how to seamlessly embed a Power BI report as a system dashboard in Dynamics 365 Customer Engagement (CE) using environment variables.
  • If Statement in C#5/20/2024 5:09:33 AM. Master the fundamentals of C# with if statements. Learn to control program flow based on conditions, enabling dynamic decision-making in your code efficiently."
  • Generate Barcode Using Spire.Barcode Library5/17/2024 10:22:11 AM. The Spire. Barcode library offers a versatile solution for generating barcodes in C#. With comprehensive features and clear documentation, it simplifies barcode creation, encoding, and customization,
  • Mastering Python Best Practices for Clean and Efficient Code5/17/2024 7:10:25 AM. In Python development, adhering to best practices is paramount for code clarity and efficiency. Embrace PEP 8 guidelines, document with docstrings, use list comprehensions, and handle exceptions judic
  • Implicitly Typed Local Variable In .NET5/16/2024 9:30:48 AM. Implicitly Typed Local Variables in .NET allow declaration without specifying the variable's data type explicitly, enhancing code readability and reducing verbosity, improving developer productivi
  • ShieldAI - Azure Powered Content Safety for Protected Material Detection5/16/2024 9:20:55 AM. ShieldAI leverages Microsoft Azure's robust AI capabilities to ensure comprehensive content safety and protected material detection. This advanced system provides real-time monitoring and automate
  • Add Details of an Employee With Image and Display it Into a Gridview5/16/2024 6:04:26 AM. This Flutter app enables adding employee details, including images, and displays them in a GridView layout. Users can upload employee information conveniently, and the app organizes and presents it ef
  • Association in Entity Framework5/14/2024 11:00:56 AM. Entity Framework manages associations between entities in databases, facilitating relationships like one-to-one, one-to-many, and many-to-many. Through navigation properties and various mapping strate
  • Demystifying customStringify: Filtering Functions in JSON5/13/2024 4:51:28 AM. In the vast world of data, JSON (JavaScript Object Notation) reigns supreme for its lightweight and human-readable format. But what if you want to control how specific data gets represented in your JS
  • Ordinal & Label Encoding in Machine Learning5/10/2024 4:05:16 AM. Categorical variables in machine learning require numerical conversion. Ordinal Encoding orders data, while Label Encoding assigns unique values. Python code demonstrates encoding techniques for effec
  • Azure Bicep: Power of Variables for Efficient Deployment5/8/2024 10:25:27 AM. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep variables. It starts with logging into Azure, then moves on to explain the concept of variables in Azure Bicep, com
  • Serialization And Deserialization in .NET5/8/2024 10:11:00 AM. Serialization in .NET transforms objects into a format suitable for storage or transmission, facilitating data interchange. Deserialization reverses this process, reconstructing objects from the seria
  • Interpreter Pattern in .NET5/8/2024 9:52:04 AM. The Interpreter Pattern in .NET facilitates language interpretation by defining grammar and providing a framework to interpret expressions. It's ideal for implementing domain-specific languages or
  • InProc Session State Mode in ASP.Net5/8/2024 9:51:38 AM. This article explains the InProc Session State Mode in ASP.NET. The InProc Session State Mode is the default Session State Mode. We can host multiple websites/web applications on a single IIS. Each ap
  • REST Service in ASP.NET Web API5/8/2024 9:50:41 AM. Learn to build RESTful services with ASP.NET Web API. Explore HTTP methods, routing, JSON serialization, DTOs, attribute routing, content negotiation, and error handling for robust APIs. Dive into pra
  • Local and Global Temporary Tables in SQL Server5/6/2024 11:21:50 AM. Learn about temporary tables in SQL Server. Explore the differences between local and global temporary tables, their scope, and usage. Understand how temporary tables provide session-specific data sto
  • DNN (Formerly DotNetNuke) Tutorial - Part 15/3/2024 9:00:39 AM. DNN Tutorial - Part 1 introduces DotNetNuke, a versatile content management system (CMS) built on ASP.NET. Learn website setup, user management, and extension installation for robust web development.
  • Microsoft Small Basic: Painting Tool Using Graphics Window5/1/2024 11:09:00 AM. Learn to create a Painting Tool using Small Basic's GraphicsWindow, including animation and graphical output. Explore step-by-step code explanations and tutorials for beginners, covering drawing s
  • Introduction to Task-Based Asynchronous Pattern in C# 4.5: Part I5/1/2024 11:07:16 AM. Discover the fundamentals of Task-Based Asynchronous Pattern in C# 4.5: Part I. Explore asynchronous programming, concurrency, and the await keyword for efficient parallel computing in .NET Framework
  • Consuming Web Service In ASP.NET MVC4/29/2024 10:04:02 AM. Consuming web services in ASP.NET MVC involves adding a service reference, generating a proxy class, and utilizing HTTP clients like HttpClient or WebClient. Data exchange occurs through SOAP or REST
  • View Variables In .NET MVC4/29/2024 3:59:02 AM. This article discuss the View Variables, such as ViewData, ViewBag, TempData and Session in MVC
  • DNN (Formerly DotNetNuke) Tutorial - Part 2 (Adding Modules)4/25/2024 8:32:03 AM. Explore the second part of our comprehensive tutorial series on DNN (formerly DotNetNuke). In this segment, learn the essential steps for adding modules to your DNN website, enhancing its functionalit
  • .NET Serialization4/24/2024 1:26:20 PM. Serialization in .NET facilitates object state persistence, enabling transmission across networks or storage in various formats like binary and XML. It ensures data integrity, exemplified by the US Vi
  • SoapFormatter in C#4/23/2024 11:25:44 AM. Learn to serialize and deserialize objects using SOAPFormatter in .NETFramework. Understand the usage of the IFormatter interface with Serialize and Deserialize functions. Implement serialization wit
  • Introduction To Serialization In .NET4/23/2024 7:22:38 AM. In this article, we will Learn about various serialization formats like binary, XML, and JSON, along with serialization attributes and best practices for efficient data handling and persistence within
  • Learn Patterns and Matching in Rust4/22/2024 9:00:33 AM. In this article, we will explore the pattern syntax of Rust Programming Language. Patterns and matching in Rust streamline data handling and control flow. With various pattern types and exhaustive mat
  • DNN, Formerly DotNetNuke, Tutorial - Part Four (GenericDNN Modules) 4/22/2024 8:55:39 AM. Learn how to create a GenericDNN module using templates, simplifying module installation without manual configuration. Follow step-by-step instructions for project setup, building in Release mode, ins
  • Conversion from Object to JSON by Json.NET 4/22/2024 8:15:13 AM. Explore seamless conversion of objects to JSON using Json.NET, a popular library in C#. Learn efficient serialization techniques, data transformation strategies, and harness the power of .NET developm
  • DNN (Formerly DotNetNuke) Tutorial - Part 3 (Create Custom Edit Page)4/22/2024 7:46:33 AM. Learn to customize your DNN (formerly DotNetNuke) experience with this tutorial's third installment. Delve into crafting a bespoke editing page, empowering you to tailor your CMS to specific needs
  • Generative Adversarial Networks (GANs) for Content Generation4/22/2024 5:56:51 AM. AI artists get competitive! GANs use AI to create new images and music, like two rivals pushing each other to be better.
  • Services in AngularJS For Beginners4/19/2024 10:31:05 AM. Explore the essentials of AngularJS services in this beginner-friendly tutorial. Learn how services facilitate data sharing and encapsulation, enhancing your understanding of AngularJS fundamentals.
  • Working With Retention in SharePoint4/18/2024 8:26:18 AM. In this article we can create two site collection level retention policies and associate these polices with two site collection content types.
  • Learn Angular 8 Step By Step in 10 Days – View Encapsulation (Day 6)4/17/2024 9:35:52 AM. Embark on a 10-day journey to master Angular 8 with a comprehensive tutorial series. Day 6 delves into View Encapsulation, exploring how it enhances component styling, encapsulation modes, and practic
  • Learn Angular 8 Step By Step in 10 Days – Directives (Day 4)4/17/2024 9:35:03 AM. In this article, As we all know Angular 8 has already been released. Now, in this article series, we will discuss a different aspect of Angular 8 for all types of users.
  • Learn Angular 8 Step By Step in 10 Days – Pipes (Day 5)4/17/2024 9:33:42 AM. Explore Angular 8 in a structured, step-by-step tutorial over 10 days, focusing on Pipes on Day 5. Enhance your web development skills with hands-on learning of this powerful JavaScript framework.
  • Newtonsoft.Json vs. System.Text.Json: Comparative Analysis4/17/2024 4:44:19 AM. In the world of .NET development, handling JSON serialization and deserialization is a common task, especially when dealing with web APIs. In this article, we'll compare and contrast these two lib
  • A simplified approach to serializing and deserializing objects in C# 104/16/2024 10:48:12 AM. This comprehensive guide teaches how to streamline data interchange processes efficiently using C# 10 Records. Authored by Ziggy Rafiq.
  • Create a Transparency in Image Using HTML54/12/2024 5:52:48 AM. Learn how to create a transparent photo using HTML5 canvas and JavaScript. This beginner-friendly tutorial guides you through setting up the project in Visual Studio, creating HTML files, and adding i
  • Polymorphic serialization using System.Text.Json4/12/2024 5:50:15 AM. Polymorphic serialization is the process of serializing and deserializing objects of different types that share a common base type. This allows us to preserve the specific type information of each obj
  • Consuming Web Service In Windows Application4/11/2024 10:51:06 AM. This tutorial guides beginners on consuming a Web Service in an ASP.Net Windows Application step-by-step, from adding a service reference to calling methods. It emphasizes simplicity and clarity for e
  • AppSettings - Six Ways To Read The Config In ASP.NET CORE 3.04/11/2024 6:23:13 AM. Learn six methods to read AppSettings in ASP.NET Core 3.0, including options pattern, configuration providers, IConfiguration interface, environment variables, and JSON files, ensuring flexibility and
  • Use of Environment Variable in Windows 84/10/2024 10:43:21 AM. Learn how to manage Environment Variables in Windows 8 using Control Panel. Add, edit, or delete variables to customize system settings for better program execution. Simplify software kit installation
  • Learn about SQL Table Variable?4/9/2024 4:58:06 AM. Table variables in SQL Server function similarly to temporary tables but with some constraints. They offer local scope and structure definition but lack certain features like non-clustered indexes and