Resources  
  • Optimizing Application Performance In-Memory Cache in .NET CoreMar 27, 2024. In this article we will see how we can improve the performance of the application using IMemory Cache in .NETcore application.
  • Namespace for Authentication Routes in MVC and Its ImportanceMar 19, 2024. The System.Web.Mvc namespace in ASP.NET MVC is crucial for authentication routes, aiding in code organization, readability, and integration with framework features for seamless authentication and authorization tasks.
  • Restrict Uploaded File Type in ASP.NET CoreMar 14, 2024. In ASP.NET Core MVC, you can restrict the uploaded file types by implementing validation on the server side. Here's a basic example of how you can achieve this.
  • User Authentication with Forms Authentication in ASP.NET MVCMar 10, 2024. Forms Authentication is a widely-used mechanism in ASP.NET for managing user authentication within web applications. It allows developers to authenticate users based on credentials stored in a database or another user store. Implementation of Forms Authentication in an ASP.NET web application.
  • Leveraging Compiled Queries for Enhanced Performance in LINQMar 09, 2024. Compiled queries in LINQ allow developers to pre-compile LINQ queries into executable delegates, reducing the overhead of query compilation and optimization. By caching the compiled query execution plan, compiled queries improve the performance of frequently executed or complex queries in C# applications.
  • Automate Email Generation with Power Automate Email SignaturesMar 04, 2024. 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 dynamically from the "Get_Email_Signature" action's output.
  • [Solved]: Permission to send an SMS has not been enabled for the region indicated by the 'To' number in TwilioFeb 28, 2024. In this article, we will see how to resolve the Twilio error: Permission to send an SMS has not been enabled for the region indicated by the 'To' number in C#
  • Understanding Caching in .NET With ExampleFeb 28, 2024. 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 for efficient implementation in .NET applications.
  • Print Output of First n Natural Numbers in UI Screen in Unity 3Feb 28, 2024. 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.
  • How to Integrate Twilio in C# .NET MVC Project to Send SMS?Feb 26, 2024. In this article, we will learn how to integrate Twilio in a C# .NET MVC project to send SMS. Learn to enhance user engagement by integrating Twilio into a C# MVC project. Follow the steps from setting up a Twilio account to sending SMS, creating a seamless user interaction experience.
  • Async Patterns in MVC Controllers for Efficiency or Adding Unnecessary Complexity?Feb 22, 2024. Explore the necessity of async patterns in MVC controllers—unveiling the intricacies of conventional and alternative coding styles
  • Result vs. ActionResult in ASP.NET MVCFeb 06, 2024. In ASP.NET MVC, ActionResult is a general base class for action results, offering flexibility. ViewResult, a specific type, is used when explicitly returning a view, simplifying code for clearer understanding.
  • Deploying a .NET MVC App on Azure App ServicesFeb 05, 2024. 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 .
  • ASP.NET Core MVC vs Razor Pages vs CodeBehind FrameworkFeb 02, 2024. In this article, we compare the performance of ASP.NET Core with the CodeBehind framework. Once we compare Razor Pages with CodeBehind and once again we compare ASP.NET Core MVC with the CodeBehind framework.
  • Optimize ASP.NET Core MVC Data Transfer with Custom MiddlewareFeb 01, 2024. 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 requests and responses in a specific order. Transferring data between middleware components can be achieved using various techniques.
  • Routing to Controller Actions in ASP.NET Core MVCJan 30, 2024. 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 established in the Startup.cs file using the MapControllerRoute method.
  • Full-Stack Web Development in ASP.NET Core 8 MVCJan 30, 2024. Full-stack web development refers to the practice of designing, developing, and deploying both the client-side (front-end) and server-side (back-end) components of a web application. In this, developers handle everything from user interface design and interaction to database management and server configuration.
  • Stars Rating System with Dapper in .NET CoreJan 29, 2024. This tutorial teaches ASP.NET Core MVC web application development with controllers and views. Implementing a star rating system with Dapper in .NET Core involves several steps. First, you need to set up your database schema to store ratings.
  • Data Transfer in ASP.NET Core MVC Controllers with TempDataJan 29, 2024. In ASP.NET Core MVC, you can pass temporary data from one controller to another using TempData. TempData is a dictionary that can be used to share data between controllers during the current request and the subsequent redirect. Here's how you can achieve this:
  • Caching Strategies Blueprint: Accelerate Data Retrieval PerformanceJan 24, 2024. This article explores the significance of caching in software development, emphasizing its role in enhancing data retrieval efficiency. It covers caching principles, trade-offs, cache hierarchy, hits and misses, and cache eviction policies. Database caching and CDN acceleration, are discussed, along with scenarios where caching may not be beneficial.
  • Implementing IP Rate Limiting in ASP.NET Core MVCJan 18, 2024. IP rate limiting is a crucial aspect of web application security that helps prevent abuse, protect against brute force attacks, and ensure fair resource usage. In this article, we will walk through the process of implementing IP rate limiting in an ASP.NET Core MVC application using middleware.
  • Understanding and Managing Server-Side (Output) Caching in .NetJan 15, 2024. 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, and sliding expiration for optimization.
  • Securing PDF Uploads in MVC: Mitigating PDF Injection and Cross-site Scripting VulnerabilitiesJan 15, 2024. PDF Injection, also known as PDF XSS (Cross-site Scripting), can be a serious security vulnerability. To prevent such issues during PDF upload and viewing in an MVC (Model-View-Controller) application, it's crucial to implement proper validation and sanitation mechanisms. Below is a sample code that demonstrates how to handle PDF uploads securely and prevent PDF Injection leading to Cross-site Scripting in an MVC environment.
  • How to scale Spring Boot applications with NCache Java EditionJan 08, 2024. From this article, you will learn how to scale spring boot applications with NCache Java Edition. Spring Boot for efficient and scalable Java applications. Learn to integrate NCache, a distributed in-memory caching solution, for optimal performance and enhanced scalability.
  • JSON Serialization and Deserialization in C#Dec 29, 2023. JSON serialization and deserialization in C#! Learn the ropes with Newtonsoft.Json (Json.NET) or the built-in System.Text.Json. Level up your data interchange skills for seamless system communication.
  • Controllers and Actions in MVCDec 28, 2023. In this article, we will learn about the role of controllers, action methods, and action filters in the MVC architectural pattern for web development. Understand their functions, significance, and examples to enhance your ASP.NET MVC application.
  • ASP.Net MVC vs ASP.Net CoreDec 26, 2023. The distinctions between ASP.NET MVC and ASP.NET Core frameworks. ASP.NET MVC relies on the .NET Framework, tailored for Windows, while ASP.NET Core is cross-platform, modular, and boasts improved performance.
  • View in React.js within the MVC ArchitectureDec 19, 2023. Explain how to work with the View in the MVC pattern.
  • What is NCache Playground and How to Use It?Dec 18, 2023. As software developers, we may come across different requirements which require us to try and work with different technologies and frameworks. But this comes with its own learning curve - installing tech, learning the nuances and then adapting to work with the new tech.
  • Working With Numeric Format Specifiers in C# 10Dec 17, 2023. In this article, we will see how to use numeric format specifiers with Console.WriteLine in C# 10.
  • Handle CORS Error ASP.Net MVCDec 14, 2023. Cors error while using js frameworks like React. Demystify CORS in React and Next.js by configuring your ASP.NET Web API. Learn to handle requests, pre-process, and tackle CORS issues, ensuring secure interactions between your server and client applications.
  • NCache Security: A Comprehensive Approach to Protecting Your Cached DataDec 08, 2023. From this article, you will learn a comprehensive approach to protecting your cached data. In the realm of distributed caching, safeguarding cache nodes is crucial for protecting data and infrastructure. NCache, a robust distributed caching solution, offers comprehensive security features. This article guides you through configuring security levels in NCache for optimal data safety.
  • Managing Licenses with TelerikNov 27, 2023. Learn how Telerik licenses work and how to manage. Learn about how Telerik licenses function, the role of license holders, and the process of managing and transferring licenses. Discover solutions for errors and gain insights into Telerik Management Admin.
  • How To Create ASP.NET Core MVC Application?Nov 08, 2023. An ASP.NET Core MVC (Model-View-Controller) application is a type of web application framework developed by Microsoft. It is designed for building modern, dynamic web applications. Here's what each component of ASP.NET Core MVC represents:Model: The model represents the data and business logic of the application. It defines the structure and behavior of the data that the application works with. In an ASP.NET Core MVC application, models are typically classes that define the data entities and may also include the logic to interact with a database or other data sources.View: The view is responsible for presenting the user interface and displaying the data to the user. Views in MVC are typically written in a markup language like HTML, and they are often combined with a template engine to dynamically generate the HTML based on the data from the model.Controller: The controller acts as an intermediary between the model and the view. It receives user requests, processes them, interacts with the model to retrieve or update data, and then selects the appropriate view to render the response. Controllers handle user input, such as form submissions and URLs, and manage the flow of the application.ASP.NET Core is a cross-platform and open-source framework that allows developers to build web applications and services. MVC is one of the architectural patterns it supports, and it provides a structured way to organize code, making it easier to manage and maintain web applications. It promotes the separation of concerns, making it possible to work on the different aspects of an application independently.
  • Azure Redis Cache with C# for High-Performance ApplicationsNov 02, 2023. This article explanation of Azure Redis Cache and its integration with C# is thorough and provides a good understanding of the topic. You have covered the essential steps to set up Azure Redis Cache, retrieve access keys, and integrate it with C# using the StackExchange.Redis library. Additionally, your provided code example illustrates how to connect to Azure Redis Cache and refresh the expiration time of a cache key.
  • Output Caching in ASP.NET CoreOct 25, 2023. 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.
  • ASP.NET Core MVC CRUD Application with DapperOct 24, 2023. Learn how to build a robust CRUD application in ASP.NET MVC with Dapper, a lightweight and efficient ORM library.
  • How Caching Improves Data Access Performance?Oct 23, 2023. In this article, we explore caching's role in enhancing data access performance. Caching involves storing frequently accessed data, reducing latency and database load. Despite its advantages, challenges like cache invalidation, size management, and policy selection need consideration for effective implementation.
  • ASP.NET Core In-Memory Caching ExplorationOct 20, 2023. Caching in web applications, like ASP.NET Core, enhances performance by storing frequently accessed data in memory. This article explains its benefits, types, and practical usage for database data.
  • How to Implement Continuous Querying with NCache?Oct 20, 2023. In this detailed article, let us discuss how we can implement continuous querying with NCache.
  • Integrating Redis Cache In .NET Core 6Oct 11, 2023. Integrating Redis Cache in .NET Core 6 provides efficient data storage and retrieval capabilities for applications. This step-by-step guide with examples demonstrates how to seamlessly incorporate Redis Cache into your .NET Core 6 applications. Learn how to set up a Redis server, configure .NET Core projects to use Redis as a caching mechanism, and utilize various caching features. This tutorial covers essential concepts, including caching strategies, key expiration, and distributed caching, enabling you to optimize your application's performance and scalability.
  • Building a Microservices API Gateway with YARP in ASP.NET Core Web APIOct 03, 2023. Building a microservices API Gateway with YARP in ASP.NET Core Web API provides a flexible and scalable solution for managing and routing traffic in a microservices architecture. By incorporating features such as service discovery, authentication, authorization, load balancing, rate limiting, and logging, you can create a robust and secure gateway that orchestrates communication between diverse microservices.
  • Model Binding In ASP.NET CoreSep 27, 2023. Model Binding in ASP.NET Core is a fundamental and powerful feature that simplifies the process of mapping HTTP request data to C# model objects. It plays a crucial role in the development of web applications by automating the extraction of data from incoming HTTP requests and populating C# objects, which can then be used to process and respond to those requests.
  • ASP.NET MVC QR Code GeneratorSep 27, 2023. This article discusses dynamically generating QR codes in ASP.NET MVC. It covers generating QR codes, creating QR code images, and working with QR code-related tasks in ASP.NET MVC using a library called IronBarCode.
  • ASP.NET Core Web API for CRUD Operations with MySQLSep 25, 2023. Creating a CRUD (Create, Read, Update, Delete) API in ASP.NET Core with a MySQL database is a common scenario in web development. In this article, we'll walk through building a complete ASP.NET Core Web API with a real-world use case. We'll create a model called CSharpCornerArticle and implement CRUD operations for it using Entity Framework Core with MySQL.
  • Lock and Monitor in C#Sep 22, 2023. Explore the power of C# multi-threading and learn to manage concurrency with lock and Monitor. Prevent synchronization issues in concurrent code effectively.
  • Proxy Pattern in C#Sep 22, 2023. Learn about the Proxy Pattern in C#, a powerful structural design pattern. Explore its purpose, implementation, and real-world applications, enhancing software efficiency, maintainability, and scalability. Happy Learning!
  • CodeBehind Library in ASP.NET CoreSep 20, 2023. CodeBehind framework is a system development model based on the MVC pattern. CodeBehind brings aspx files back to ASP.NET Core and inherits the benefits of ASP.NET Core. Projects built under CodeBehind will all be modular and each project can support web parts, while the project itself is a web part.
  • Understanding the Factory Design Pattern in C#Sep 19, 2023. Understanding the Factory Design Pattern in C#
  • Security ASP.net Core MVC (C#) Encryption and DecryptionSep 19, 2023. On the topic of "Security in ASP.NET Core MVC (C#): Encryption and Decryption," Ziggy Rafiq has written an insightful article. As Ziggy explores encryption and decryption techniques, he offers valuable insights for developers as well as security enthusiasts about how to secure web applications built on ASP.NET Core MVC.
  • Advanced Sorting and Searching in ASP.NET Core Web APISep 15, 2023. Sorting and searching are essential functionalities in many ASP.NET Core Web API applications. To implement advanced sorting and searching in your API, you can follow these steps:
  • ASP.NET MVC Model Binders with ExamplesSep 14, 2023. Explore ASP.NET MVC Model Binders, integral to web app development. They map user data to action parameters, simplifying input handling. Learn with practical examples and custom binding for complex scenarios.
  • How to Write Secure Code in C#?Sep 13, 2023. Secure coding in C# is essential for safeguarding sensitive information and preventing security breaches. Follow these best practices to enhance your application's security. Protecting Your C# Applications from Security Vulnerabilities.
  • A Clean Architecture for Building Web Applications with ASP.NET Core MVC C#Sep 13, 2023. ASP.NET Core MVC is a robust framework for constructing web applications, and when combined with the Clean Architecture pattern, it can result in manageable and expandable solutions. In this piece, we will explore how to organise an ASP.NET Core MVC project using Clean Architecture principles, with code samples written in C#.
  • Understanding LINQ in .NETSep 11, 2023. LINQ, or Language Integrated Query, is a powerful feature in the .NET framework that simplifies data querying and manipulation in C# and VB.NET applications. It provides a uniform and SQL-like syntax for querying data from various sources, including in-memory collections, databases, XML, and more.
  • In-Memory Caching in .NET: Boosting Performance with EaseSep 09, 2023. Explore the power of in-memory caching in .NET for enhanced application performance. Learn about its benefits, how to use MemoryCache, cache policies, and cache dependencies. Optimize your .NET applications for faster response times and reduced resource usage.
  • Optimizing ASP.NET Core Web API Performance with Azure Cache and CDNSep 05, 2023. Using Azure Cache for Redis or a Content Delivery Network (CDN) can indeed help improve API response times and reduce the load on your server. In this example, I'll provide code snippets and steps to integrate Azure Cache for Redis and Azure CDN into an ASP.NET Core Web API application.
  • Utilizing Browser Cache and Cookies in React.js ApplicationsSep 02, 2023. Here in this article we will learn how to implement browser cache and cookies for react js application.
  • MVC Architecture With Node.js CRUD Application [Node.js-Express-MongoDB]Aug 31, 2023. MVC Application- CRUD operations (create, read, update, and delete) Using [Node.js-Express-MongoDB].
  • C# Security: Best Practices for Secure CodingAug 31, 2023. In this article, we will discuss some of the best practices for writing secure code in C#. These practices include using secure password hashing algorithms to store passwords, validating user input to prevent injection attacks, using parameterized SQL queries, using cryptography to protect sensitive data, using HTTPS to protect data in transit, avoiding hardcoding secrets in code, and keeping code up to date with the latest security patches and updates.
  • Call Web API in .NET and Filter Data using Bootstrap Filters with Less CodeAug 27, 2023. We can filter records for each columns in table with single textbox or search. With less code and few mins, We can implement that feature to work on complex data.
  • Cache Notifications and Event-driven Architecture with NCacheAug 27, 2023. In this article, let us discuss the importance of cache notifications in building an event driven application and how we can implement such a mechanism with an example in NCache
  • Optimizing Performance for Your .NET Core ApplicationAug 24, 2023. In this article, we will see the best practices which can improve the performance of your .NET core application
  • ASP.NET MVC 5 API Testing with PostmanAug 24, 2023. Postman is a widely used API testing tool that allows developers to send requests to an API and receive responses. It provides a user-friendly interface to build, test, and document RESTful web services. In this article, we will explore how to use Postman for API testing in an ASP.NET MVC 5 application.
  • Creating a WEB API POST Method to Retrieve Data from SQL Database using ASP.NET MVC ApplicationAug 23, 2023. In this article, I have explained how to create a WEB API POST method to retrieve data from SQL database using Asp.net MVC Application.
  • HTTP Methods in .NET CoreAug 21, 2023. Explore HTTP methods in .NET Core for effective web communication. Understand GET, POST, PUT, PATCH, and DELETE roles. Utilize Microsoft.AspNetCore.Mvc for seamless handling and API creation. Enhance your .NET Core skills with this comprehensive guide.
  • Performance Optimization in ASP.NET Core: Strategies and Code ExplanationAug 21, 2023. Performance Optimization in ASP.NET Core involves employing various strategies to enhance the speed, responsiveness, and efficiency of web applications. This article provides insights into essential optimization techniques, supported by clear code explanations. From leveraging caching and asynchronous programming to minimizing database queries and utilizing content delivery networks (CDNs), these strategies ensure smoother user experiences and streamlined application performance. By delving into real-world examples, this article equips developers with the knowledge to make informed decisions when fine-tuning their ASP.NET Core applications for optimal performance.
  • Document Viewer Capabilities in ASP.NET Core 7.0Aug 20, 2023. Learn how to integrate, customize, and make the most of the new capabilities for seamless document viewing and interaction within your web applications.
  • Boosting Workflow Efficiency with Power Automate & CachingAug 16, 2023. Caching is a crucial technique for improving the performance of ASP.NET Core Web APIs. In this example, I'll walk you through implementing response caching, distributed caching using Redis, and in-memory caching in an ASP.NET Core Web API.
  • Creating Dynamic Dropdown Lists in ASP.NET MVC Using AJAXAug 12, 2023. we have learned how to create dynamic dropdown lists with cascading behavior in an ASP.NET MVC application using AJAX. The JavaScript AJAX functions communicate with the server to fetch data based on user selections, and the ASP.NET MVC controller methods
  • What is Delegates in C# .NET?Aug 12, 2023. Delegates in C# act as method pointers, enabling dynamic invocation of methods. They enhance code modularity and flexibility, finding use in event handling, callbacks, and asynchronous programming.
  • Implementing AJAX for Editing Data and Updating the Database in ASP.NET MVCAug 07, 2023. Implementing AJAX for editing data and updating the database in ASP.NET MVC allows you to enhance the user experience and responsiveness of your web application. AJAX (Asynchronous JavaScript and XML) enables seamless data retrieval and updates without requiring a full page reload, resulting in faster and more interactive user interactions.
  • Implementing Multiselect Checkboxes in ASP.NET MVC Using AJAXAug 03, 2023. Learn to create a dynamic form with multiselect checkboxes in ASP.NET MVC using jQuery AJAX. Manage student data, select multiple languages, and save to the database seamlessly. Enhance your web app with interactive features. Happy coding!
  • How to Declare and Initialize a Tuple in C#?Jul 31, 2023. Learn about C# tuples: immutable data structures for grouping elements, useful for returning multiple values from methods.
  • Implementing Real-Time Cache Sync with NCache and SignalRJul 27, 2023. From this article, you will learn how to implement the real-time cache sync with NCache and SignalR
  • Best Practices for Securing Your ASP.NET Core MVC ApplicationJul 20, 2023. ASP.NET Core MVC is a powerful web framework, but security is crucial. This article explores best practices for securing your application, including HTTPS, authentication, validation, and more. Stay up-to-date with security threats and updates for ongoing protection.
  • ASP.NET Core Dependency Injection Using C# with Framework 7Jul 19, 2023. ASP.NET Core Dependency Injection (DI) is a powerful feature that allows you to manage and resolve dependencies in your applications. It provides a way to achieve loose coupling, modularity, and testability. When combined with Framework 7, a popular framework for building mobile applications, ASP.NET Core DI becomes even more valuable.
  • How to Use ASPX Files in .NET Core?Jul 17, 2023. Code Behind library for support aspx files in .NET Core
  • Caching Best Practices for ASP.NET Core Microservices with NCacheJul 11, 2023. Let us learn about some of the important key considerations and best practices for implementing an efficient caching in .NET Core Microservices using NCache
  • What is Response Caching in ASP.NET Core?Jul 11, 2023. Accessing information efficiently needs responsive caching. The blog discusses how response caching in ASP.NET is used to increase that accessibility.
  • How To Add Authentication In ASP.NET Core 6 MVC Project Using Identity?Jul 11, 2023. In this article, We will be learning how to add authentication in ASP.NET 6 Using Identity service.
  • 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.
  • Difference Between ViewBag, ViewData, & TempData Jul 05, 2023. In the context of ASP.NET MVC or ASP.NET Core, ViewBag, ViewData, and TempData are mechanisms for passing data between a controller and a view
  • How to Redirect the Desired Web Page in ASP.Net Core MVC?Jun 28, 2023. ASP.NET Core MVC is a versatile framework for developing web applications. It offers features like dependency injection, routing, model binding, and Razor views. Learn how to use the RedirectToAction() method for effective page redirection and navigate between action methods in ASP.NET.
  • What are the Methods of Stream?Jun 22, 2023. A stream is a communication channel that connects an information source and destination.
  • Deploying ASP.net MVC Application on IIS ServerJun 19, 2023. Microsoft's Internet Information Services (IIS) is a versatile, all-purpose web server that provides requested HTML pages or files on Windows PCs. Remote client computers can submit queries to an IIS web server, which will then deliver the proper response. Web servers can share and distribute information across LANs, such as corporate intranets, and WANs, such as the Internet, thanks to this fundamental functionality.
  • NCache and Caching Patterns: Full Cache, Cache Aside, and Read-Through CachingJun 13, 2023. From this article, you will learn about NCache and Caching patterns like Full Cache, Cache Aside, and Read-Through Caching.
  • Interview Questions & Answer For Full Stack .NET DeveloperJun 02, 2023.
  • Backing Up Cache Data Using NCacheMay 24, 2023. Backing up cache data using NCache refers to the process of creating copies of the cached data stored in NCache and storing them in a secondary location for data protection and disaster recovery purposes. NCache is an in-memory distributed caching solution that helps improve application performance by storing frequently accessed data in memory, reducing the need to retrieve data from the primary data source repeatedly.
  • File Upload in ASP.NET MVC in 3 Different WaysMay 04, 2023. File Upload in ASP.NET MVC - 3 different ways
  • Implementing Caching in Spring BootMay 03, 2023. How to implement caching in a spring boot application
  • Angular @Output() DecoratorApr 27, 2023. In this article, we are going to discuss how to share data between the child component to parent component. In the previous article, we discussed how to pass data from the Parent component to the child component using the @input decorator.
  • Passing Data from ASP.NET Core MVC to JavaScript: A Guide to Using ViewBag and ViewDataApr 14, 2023. Get ready to learn how to pass data from ASP.NET MVC to JavaScript with ease. In this comprehensive guide, Ziggy Rafiq will show you exactly how to use ViewBag and ViewData to make the process seamless. Don't miss out on this opportunity to enhance your skills and take your web development to the next level.
  • How to consume multiple GET API in one view in MVCApr 14, 2023. we will learn How we can consume multiple GET APIs in one view in MVC
  • Caching Strategies In .NET Core - Using Distributed Cache, Memory Cache And Response CacheApr 12, 2023. In this article, you will learn about Caching Strategies in .NET Core: Using Distributed Cache, Memory Cache and Response Cache.
  • Stored Procedures Vs Functions In SQL - Types, Differences, And Best PracticesApr 03, 2023. This article provides a comprehensive guide to stored procedures and functions in SQL, including their types and differences. It explains how these powerful tools can simplify database management, enhance security, and improve performance. The article also provides examples of different types of stored procedures and functions, such as simple stored procedures, input and output parameters, scalar functions, and table-valued functions. Furthermore, it highlights the differences between stored procedures and functions in terms of their usage, purpose, and return values. Finally, it includes best practices for using these tools in SQL programming.
  • ASP.NET Core Application With NCache Response CachingMar 19, 2023. In this article, you will learn how to integrate NCache Response Cache in our ASP.NET Core application.
  • Using Localstorage To Cache Data In Blazor ApplicationsMar 19, 2023. In this article, we are going to learn how to implement local storage in Blazor
  • Generate Images In ASP.NET Core MVC Using OpenAIMar 13, 2023. DALL-E is an AI program developed by OpenAI that can be used to generate images based on the given text information.

About MVC-Output-Caching

NA

OUR TRAINING