Related resources for TP
  • Understanding OLTP and OLAP for Effective Data Management4/19/2024 6:03:17 AM. This article explores OLTP and OLAP, two crucial systems for data management. OLTP handles real-time transactions, while OLAP analyzes historical data to uncover valuable insights. Learn how they work
  • CancellationToken in ASP.NET Core4/19/2024 5:43:27 AM. CancellationToken in ASP.NET Core provides a powerful mechanism for achieving this goal. In this article, we will delve into the concept of CancellationToken, its usage, and practical examples to illu
  • Keeping Your .NET Core API Safe and Sound4/19/2024 4:57:22 AM. In today's digital landscape, where data is king and APIs (Application Programming Interfaces) reign supreme, ensuring the security of your API in .NET Core is paramount. In this article, we delve
  • Web API Hosting From OWIN With Windows Azure4/18/2024 1:21:58 PM. Learn to host a Web API in Azure Worker Role using OWIN for decoupled architectures. Set up the project in Visual Studio with Azure SDK, configure endpoints, and add API controllers. Utilize OWIN'
  • How To integrate Dependency Injection In Azure Functions4/17/2024 8:05:24 AM. Learn how to integrate Dependency Injection in Azure Functions, creating HTTP trigger functions, and injecting service objects using DI. Understand the Dependency Injection pattern, steps to add DI in
  • Sharing Data Between Component Using Angular V4 And Above4/16/2024 10:59:00 AM. Hi Readers , I hope you all are doing good and read my all the previous tutorials . My previous article about Binding with Angular 4 and above Binding with Angular v4 And Above in which I have explai
  • HTTP And Observables In Angular4/16/2024 6:35:55 AM. Using HTTP in Angular we are going to fetch data from the web server, We will make a call to the web server that will in return provides data. For better understanding this process we need to know wha
  • Sharing Data Between Components In Angular4/16/2024 5:33:03 AM. Share data between Angular components efficiently using Input and Output decorators, EventEmitter, and component interaction techniques. Explore parent-child and child-parent communication methods to
  • HttpClient vs IHttpClientFactory in .NET4/16/2024 4:55:47 AM. In the realm of .NET Core development, managing HTTP requests efficiently is crucial for building robust and high-performance applications. In this article, we delve into the differences between HttpC
  • PnP ListPicker Control For SPFx4/15/2024 8:53:08 AM. This article provides an overview of using the ListPicker control from the Patterns and Practices (PnP) library in SharePoint Framework (SPFx) web parts. It guides through the development process of a
  • Execute Power Automate Workflow from SPFx4/12/2024 8:16:37 AM. Learn how to trigger Power Automate workflows from SPFx web parts, enabling programmatic event-driven actions like sending emails. Follow step-by-step instructions to build and execute the workflow, i
  • Consuming Web Service In a Console Application4/11/2024 10:56:50 AM. Integrate web services seamlessly into console applications using .NET frameworks like .NET Core or .NET Framework. Utilize HttpClient or service references to communicate with SOAP or RESTful APIs, e
  • HttpClient use Polly Retry Policies in .NET Core 4/10/2024 5:54:01 AM. Polly, a robust .NET library, fortifies applications against faults with policies like Retry, Circuit Breaker, Timeout, etc. Configure retries for transient errors with ease, enhancing application res
  • Best Practices for Maintaining Security and Preventing Vulnerabilities in C#4/9/2024 5:54:03 PM. Explore essential security practices in C# programming with Ziggy Rafiq, covering password hashing, input validation, SQL injection prevention, cryptography, HTTPS, secret management, and staying upda
  • Best Practices for Creating ASP.NET Core REST API using OpenAPI4/9/2024 5:44:39 PM. Learn best practices for developing ASP.NET Core REST APIs using OpenAPI. Follow Ziggy Rafiq's expert guidance to streamline your API development process and ensure optimal performance and scalabi
  • IHttpClientFactory in .NET Core4/5/2024 9:50:07 AM. In this article, we will learn IHttpClientFactory in .NET Core simplifies HTTP client management by providing a central mechanism for creating and managing HttpClient instances.
  • List of all the HTTP Status Codes4/5/2024 6:29:50 AM. HTTP status codes are a crucial aspect of communication between clients (such as web browsers or mobile apps) and servers on the internet. In this article, we will delve into the significance and mean
  • Explanation of HttpClient in .NET Core4/3/2024 10:41:08 AM. The HttpClient class simplifies making HTTP requests (like GET or POST) in your .NET Core applications. It handles connections, timeouts, and responses, letting you focus on the data you need.
  • GET and POST Calls to Controller's Method in MVC4/2/2024 9:16:30 AM. In this article I am going to cover some really interesting material that is very useful today in web application development. You will learn how to make jQuery Ajax GET and POST calls to controller m
  • Getting Started with Razor View Engine in MVC 34/2/2024 9:08:59 AM. Learn about the Razor View Engine in MVC 3 through this beginner-level article, covering syntax basics, creating a User Registration Application, and utilizing Data Annotation Validator Attributes fo
  • ActionResult Return Type in MVC 3.04/1/2024 11:51:41 AM. In this article, you will learn how action methods help us to return models to views, file streams, and also redirect to other controllers Action method in MVC 3.0.
  • Optimizing ASP.NET MVC Applications with Output Caching4/1/2024 8:55:08 AM. In this article you will learn everything about Output Caching in MVC. Output Caching enables us to cache the content returned by any controller method so that the same content does not need to be gen
  • Explain Route Constraints in MVC4/1/2024 8:25:20 AM. Route constraints in MVC define rules for matching incoming URLs to route templates, enhancing control over routing behavior. They specify conditions like data type, length, or regular expressions, en
  • All About the TempData in MVC4/1/2024 8:16:38 AM. TempData is a temporary data storage mechanism in ASP.NET MVC, facilitating state management between HTTP requests. Stored in session variables, it aids in passing data between consecutive requests. T
  • Built In Rest Client in .NET Core4/1/2024 7:30:16 AM. .NET Core provides a built-in REST client through HttpClient in the System.Net.Http namespace. It offers lightweight, cross-platform capabilities for seamless integration with web services, enabling e
  • Routing In MVC with Code Example4/1/2024 6:57:47 AM. MVC applications rely on a routing system to handle URL requests, mapping them to controllers and actions. RouteConfig.cs defines routes, connected to Global.asax.cs. Routes can be added via RouteColl
  • Learn about ASP.NET MVC Life Cycle4/1/2024 6:28:41 AM. Understand the MVC life cycle from HTTP request to response. Learn about ASP.NET's Page class, IHttpHandler interface, and MVC's Controller. Explore RouteTable and UrlRoutingModule for routing
  • Different ActionResult Types in ASP.NET MVC & Their Uses4/1/2024 6:14:26 AM. In this article we will learn What are the different types of ActionResult in ASP.NET MVC, and when would you use each one?
  • Break and Continue Statements in C#3/28/2024 10:36:03 AM. This article elucidates essential concepts of C# programming, specifically focusing on loops, namely the break and continue statements. It presents an example demonstrating the usage and differentiat
  • How To Add Jetpack Compose In Existing Kotlin Project3/27/2024 6:15:09 AM. This article guides you through the step-by-step process of integrating Jetpack Compose into your existing Kotlin Android project.
  • C# HTTP Methods: Safe vs. Unsafe, GET vs. POST in .NET Core3/26/2024 11:05:19 AM. Dive into advanced topics like dependency injection, service configuration, and implementing retry policies and circuit breakers. Elevate your API integration game with this comprehensive guide to lev
  • Optimize HttpClient Usage in .NET Core3/26/2024 4:06:46 AM. Dive into advanced topics like dependency injection, service configuration, and implementing retry policies and circuit breakers. Elevate your API integration game with this comprehensive guide to lev
  • Angular HTTP Interceptors: Sending Tokens with Every Request3/24/2024 6:55:14 PM. In modern web applications, authentication plays a crucial role in securing resources and ensuring that only authorized users can access certain parts of the application. One common way to handle auth
  • Response Compression in .NET Core3/22/2024 6:14:59 AM. Learn about HTTP compression techniques like Gzip, Deflate, and Brotli to reduce payload sizes and expedite data transmission. Configure response compression in ASP.NET Core, control compression over
  • Web API Design Principles Or Web API Design Guidelines3/19/2024 6:10:44 AM. This article delves into the best practices for implementing and designing web APIs. It emphasizes the importance of considering both the API implementation and consumer perspectives. Key points inclu
  • Implementing Resilient HTTP Requests in C# 3/16/2024 11:08:30 AM. Ensuring reliable communication between systems is vital. Learn how to implement resilient HTTP requests in C# using Polly for robust, fault-tolerant applications.
  • How To Generate Curl Script of the HttpClient in .NET3/7/2024 11:22:06 AM. The HttpClientToCurl is a NuGet package for generating the curl script of HttpClient in C# (.Net) supported features: Post, Get, Put and Delete. content types: application/json, text/xml, application/
  • Why Any() Outperforms Count() in Collection Checks3/6/2024 8:50:13 AM. Efficiency in programming is vital, and choosing the right method for tasks is crucial. Explore why Any() often outperforms Count() in specific scenarios with illustrative examples in C#.
  • Automate Email Generation with Power Automate Email Signatures3/4/2024 10:17:03 AM. This HTML snippet fetches an email signature using Microsoft Power Automate. It uses an ID attribute to target a specific div element and utilizes inline code to access and display the signature dynam
  • Create Local FTP on Your Computer3/1/2024 11:08:54 AM. Setting up a local FTP server on your computer involves configuring file transfer protocol for efficient data exchange within your network. Through server setup and network configuration, users can se
  • CRUD Operation With Angular 5 HTTP Client And ASP.NET Core Web API2/29/2024 10:09:52 AM. HTTP is the messaging system between the client and the server-client which sends the request and server responds with the proper message. Angular HTTP client is the toolkit which enables us to send a
  • Print Output of First n Natural Numbers in UI Screen in Unity 32/28/2024 6:55:37 AM. To print the output of the first 'n' natural numbers on the UI screen in Unity 3, you can create a simple script and attach it to a Text UI element.
  • Understanding Caching in .NET With Example2/28/2024 5:20:20 AM. Caching is a cornerstone in .NET development, enhancing application performance and scalability. This article explores its significance, and diverse caching techniques, and offers a practical example
  • Vue.js HTTP Handling: Dynamic Interactions, State, Uploads, Real-Time Data2/28/2024 5:15:01 AM. Vue.js, with its reactive framework and extensive ecosystem, provides developers with powerful tools to handle HTTP requests seamlessly. In this guide, we will explore advanced examples, extending bey
  • Vue.js HTTP Requests: Error Handling, Authentication, and File Uploads2/28/2024 5:09:20 AM. Vue.js, with its simplicity and reactivity, is not only a front-end framework but also excels in facilitating communication between the client and server through HTTP requests. In this article, we wil
  • How To Check If Your System Is Ready For Windows 112/22/2024 11:32:18 AM. This content provides an introduction to Windows 11, highlighting its key features, minimum system requirements, compatibility testing process, availability details, and useful links for further infor
  • Third-party API Integration in Asp.NET Core Web API2/20/2024 6:21:52 AM. ASP.NET Core is a powerful framework for building web APIs, allowing developers to create robust and scalable applications. One of the key features of modern web development is the integration of thir
  • DRY, YAGNI, KISS Engineering Principles2/19/2024 10:51:37 AM. In software development and engineering, certain guiding principles serve as beacons of efficiency and effectiveness. Among these principles, DRY, YAGNI, and KISS stand out as fundamental pillars that
  • Use .http files in Visual Studio2/13/2024 5:52:23 AM. In Visual Studio, .http files enable direct API testing within the IDE from Visual Studio 2019 onwards. Before this, developers relied on tools like Postman or Swagger, or unit testing. These files st
  • Send and Receive Emails in ASP.NET with C#2/12/2024 10:17:46 AM. This guide provides a comprehensive overview of sending and receiving emails in ASP.NET C#. It covers setting up SMTP, sending basic emails, adding attachments, sending to multiple recipients, and eve
  • Getting Started With ASP.NET Core And jQuery CRUD Using WEB API2/9/2024 7:23:23 AM. A lab exercise for you to demonstrate what have you learned from this training material to create your own Todo CRUD operation using TodoRepository included in this training material.
  • Get All The Users In An O365 Organization Using Graph API2/9/2024 7:21:02 AM. In this article, I would like to explain and share the NodeJS code to get all the users from O365 using Graph API and will also discuss how to validate the graph API users' results again in the o3
  • AWS Transfer Family ( SFTP , FTP , FTPS Server ) Overview2/8/2024 8:06:27 AM. AWS Transfer Family , What is AWS Transfer Family , Supported Transfer Protocols and Benefits. AWS Transfer Family is a managed service facilitating secure file transfers to and from AWS using protoco
  • Validating an HTTP Endpoint to Receive Events from Azure Event Grid2/7/2024 5:32:27 AM. This article elucidates the process of validating an HTTP endpoint for receiving events from Azure Event Grid. By creating an Azure Function App with an HTTP-triggered function, you can handle Microso
  • Deploying a .NET MVC App on Azure App Services2/6/2024 4:27:09 AM. Deploy an Asp.Net 8 MVC application on Azure App Services using Visual Studio. Learn to create app services, configure settings, and publish the project, making it .
  • Generate Bell-Shaped Distribution: PySpark & Matplotlib in Fabric Notebook2/5/2024 11:31:42 AM. Learn how to generate and visualize a bell-shaped or normal distribution using PySpark and Matplotlib in Microsoft Fabric Notebook. Explore the characteristics of a normal distribution, its symmetry,
  • Sending An E-Mail Using ASP.NET With C#2/1/2024 11:42:26 AM. In this article, I show how Sending emails is a crucial functionality in web applications, often employed for various purposes like user account confirmation through OTP. This article delves into the
  • Dependency Injection In .NET Core - Understanding The Fundamentals And Best Practices2/1/2024 11:04:42 AM. In this article, you will learn about dependency Injection in .NET Core: Understanding the Fundamentals and Best Practices.
  • Using C# For Cross-Platform Development2/1/2024 10:23:02 AM. In this article, you will learn how to use C# for cross-platform development. Explore the power of C# programming beyond the confines of Windows and .NET in this insightful article.
  • Optimize ASP.NET Core MVC Data Transfer with Custom Middleware2/1/2024 9:01:22 AM. In ASP.NET Core, middleware components are used to handle requests and responses as they flow through the application's pipeline. These middleware components can be chained together to process req
  • HTTP Requests in .NET Core with HttpClient and HttpClientFactory1/30/2024 11:55:26 AM. In this article, we explore efficient HTTP request handling in .NET Core using HttpClient and harness the power of HttpClientFactory. Learn best practices for scalability, dependency injection, and op
  • Routing to Controller Actions in ASP.NET Core MVC1/30/2024 4:15:10 AM. In ASP.NET Core, routing to controller actions is facilitated through attributes that define route templates, mapping incoming HTTP requests to specific actions. Multiple conventional routes can be es
  • Exploring Python's NumPy, SciPy, and Matplotlib for Scientific Insights1/29/2024 11:53:48 AM. Explore Python, through libraries like NumPy, SciPy, and Matplotlib, becomes an essential tool in scientific computing, enabling researchers to perform complex calculations, data analysis, and visuali
  • Python Pair & Joint Plots with Matplotlib and Pandas1/25/2024 6:52:11 AM. This article introduces you to creating Pair Plots and Joint Plots, powerful tools for visualizing relationships and distributions in your dataset.
  • Securing Your .NET Applications With Examples1/20/2024 11:16:24 AM. In the realm of software development, security remains a paramount concern. This is especially true for .NET applications, which often handle sensitive data and interact with critical systems. By adhe
  • Comparative Analysis of Monthly Sales1/19/2024 9:24:07 AM. We will explore how to create line charts using three popular Python libraries: Matplotlib, Seaborn, and Plotly. By visualizing the same set of sample sales data across different months, we'll see
  • Extending HttpClient With Delegating Handlers in ASP.NET Core1/17/2024 11:30:32 AM. Explore the power of the HttpClient class in ASP.NET Core through Delegating Handlers. Learn to create a custom handler for logging HTTP requests and responses, enhancing HttpClient functionality with
  • Handling CORS (Cross-Origin Resource Sharing) in ASP.NET Core Web API1/15/2024 9:08:11 AM. Demystify CORS in ASP.NET Core! Learn how to seamlessly handle Cross-Origin Resource Sharing and overcome origin-related errors in your Web API with this concise guide.
  • Understanding and Managing Server-Side (Output) Caching in .Net1/15/2024 6:12:57 AM. IIS employs System.Web.Caching for efficient output caching. Utilize HttpRuntime.Cache.Insert for CRUD operations, specifying key, value, and optional parameters like dependencies, absolute expiration
  • Handling HTTP Options Method in Angular and C#1/12/2024 7:16:34 AM. Learn about the HTTP OPTIONS method in this tutorial, focusing on how AngularJS frontend and C# backend work together. See how the AngularJS controller uses OPTIONS requests to communicate with the C#
  • Handling HTTP Patch Method in AngularJS Frontend and C# Backend1/12/2024 7:14:11 AM. Discover the power of the HTTP PATCH method with this tutorial, focusing on AngularJS frontend and C# backend integration. Uncover the nuanced approach of making partial updates to resources, as the A
  • Handling HTTP Delete Method in AngularJS Frontend and C# Backend1/12/2024 7:11:48 AM. Explore the effective use of the HTTP DELETE method in this tutorial, focusing on AngularJS frontend and C# backend integration. Learn to implement a streamlined resource deletion process as the Angul
  • Handling HTTP Put Method in AngularJS Frontend and C# Backend1/12/2024 7:06:54 AM. Learn how to implement an HTTP PUT method in an AngularJS frontend and C# backend. The AngularJS HTML frontend features a form for resource updates, while the C# backend uses a Web API controller. Fol
  • Efficient Bandwidth Management Using Techniques in .NET Core1/11/2024 5:36:57 AM. Response compression is a vital technique employed in web development to optimize the performance and responsiveness of HTTP applications. By reducing the size of HTTP responses, response compression
  • HttpClientHandler in C#1/2/2024 4:46:07 AM. Unlock the potential of C#'s HttpClient class with HttpClientHandler. Delve into its capabilities—handling cookies, managing proxies, configuring SSL/TLS, timeouts, and more—to optimize and contro
  • What are Different Type of HTTP Errors and Status Code?1/2/2024 4:34:10 AM. The significance of HTTP status codes, vital indicators of web request outcomes. From informational beginnings (1xx) to server errors (5xx), grasp their meanings for effective communication and issue
  • Handling HTTP Post Request Method in AngularJS Frontend and C# Backend12/29/2023 11:40:53 AM. The POST method in HTTP sends data to a server to create a new resource. It's used for submitting information—like form data or JSON payloads—to the server. Unlike GET, it's not idempotent, ty
  • Handling HTTP Get Request Method in AngularJS Frontend and C# Backend12/26/2023 8:04:48 AM. This guide explores the utilization of HTTP GET request method within an AngularJS frontend and their corresponding processing and handling in a C# backend. It details how Get types of requests initia
  • Send Mail using C# code12/25/2023 2:28:52 PM. In this article, we will learn how to send mail using C# code.
  • Building Azure HTTP Trigger Function to Generate QR Codes from Post Request Responses12/24/2023 10:04:37 AM. We'll guide you through the process of creating an Azure HTTP Trigger Function using Node.js. The goal is to generate QR codes in response to POST requests.
  • Deploying Your Solution to Azure via FTP12/20/2023 10:50:01 AM. In this Article we will Learn how to deploy your solution to Azure by FTP (File Transfer Protocol). This step-by-step guide demonstrates efficient methods to upload builds, ensuring a smooth transi
  • Using RESTSharp for CRUD Operations in ASP.NET Core Web API12/19/2023 7:24:01 AM. Utilizing RESTSharp for CRUD operations in ASP.NET Core Web API offers a streamlined approach to interacting with APIs. This library simplifies HTTP requests and responses, allowing developers to focu
  • Send HTTP Request to SharePoint and get Response using Power Automate12/19/2023 5:39:01 AM. HTTP Request to SharePoint and get Response using Power Automate
  • Working With Numeric Format Specifiers in C# 1012/17/2023 8:36:28 AM. In this article, we will see how to use numeric format specifiers with Console.WriteLine in C# 10.
  • Task Parallel Library (TPL) in C#12/12/2023 8:48:49 AM. The Task Parallel Library (TPL) in C# revolutionizes parallel programming, offering simplicity and scalability. This guide covers TPL components, benefits, and examples, showcasing its role in buildin
  • WebSocket in .NET12/12/2023 4:57:39 AM. WebSockets have become crucial for real-time communication in web applications, transcending the limitations of traditional HTTP. In .NET, utilizing the System.Net.WebSockets namespace facilitates str
  • How To Make API Calls In Angular Applications12/6/2023 10:29:44 AM. Making API calls is a common task in Angular applications, and it can be achieved using Angular's built-in HttpClient service. Here are the steps on how to make API calls in Angular Applications.
  • Unraveling .NET Core Web API Structure11/29/2023 6:46:42 AM. Unlock the potential of .NET Core Web APIs. This guide explores their fundamental structure, HTTP methods (GET, POST, PUT, DELETE), and practical use cases for building robust and scalable application
  • Service Management in C#.NET11/24/2023 7:21:13 AM. This article discusses how to create a Web Application to manage the services running on our system.
  • HTTP Status Codes11/23/2023 5:16:01 AM. Understanding of HTTP Status Codes. This article provides a comprehensive overview of HTTP status codes, categorized into 1xxs for informational, 2xxs for success, 3xxs for redirection, 4xxs for clien
  • Securing Your .NET Core APIs11/18/2023 6:19:41 AM. This article explains how you can secure your .NET Core APIs with essential practices. It covers JWT authentication, role-based authorization, HTTPS implementation, input validation, and rate limiting
  • Optimizing Resource Management in .NET HttpClient with Cancellation Tokens11/17/2023 5:23:52 AM. The .NET HttpClient class is a powerful tool for making HTTP requests, but it may lead to resource issues if not managed properly. Cancellation tokens in C# provide a mechanism to interrupt ongoing op
  • Output Caching in ASP.NET Core10/25/2023 6:29:05 AM. Learn the benefits of output caching, a powerful web optimization technique. Understand its types, including client-side, proxy, and server-side caching, and explore its implementation in ASP.NET Core
  • Axios with React/React Native for HTTP Requests10/23/2023 7:17:32 AM. This article explains how to use Axios library in react native for making http requests
  • .NET Task Parallel Library vs System.Threading.Channels10/18/2023 6:49:02 AM. Concurrency in modern software development is vital for applications to efficiently manage multiple tasks simultaneously. In the .NET ecosystem, developers have two powerful tools for concurrency: the
  • Decoding the Importance of HTTP Status Codes in Web Development10/17/2023 6:17:15 AM. In today's digital era, staying at the forefront of web development requires a deep grasp of HTTP status codes. These three-digit numbers reveal vital insights into web requests and responses, mak
  • Create Your Own HttpHandler In C#10/16/2023 5:05:36 AM. The purpose of this article would be to implement HttpHandler in order to allow file download only by logged in users and stop for anyone else.
  • How does ASP.NET Core Process a Request?10/13/2023 8:05:51 AM. ASP.NET Core, a versatile web framework, leverages a modular architecture to process requests through a series of middleware components, enabling customizable handling of HTTP requests and responses.
  • How Does an HTTP Web Request Work?10/12/2023 9:37:40 AM. Explore the fundamental workings of HTTP, the protocol that underpins web communication. Learn about HTTP components, status codes, and the process of client-server interaction.
  • Consuming ASP.NET Web API REST Service In ASP.NET MVC Using HttpClient10/10/2023 11:16:34 AM. In this article, we will learn how to consume Web API REST Service in ASP.NET MVC using HttpClient.