Resources  
  • Working with Branch Policies in Azure DevOpsMar 18, 2024. In this article, we will learn how to enforce quality and compliance standards in your Azure DevOps repositories by implementing branch policies. Ensure code quality, enforce code reviews, and automate testing with branch policies.
  • Implementing Resilient HTTP Requests in C# Mar 16, 2024. Ensuring reliable communication between systems is vital. Learn how to implement resilient HTTP requests in C# using Polly for robust, fault-tolerant applications.
  • 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.
  • [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#
  • Vue.js HTTP Requests: Error Handling, Authentication, and File UploadsFeb 28, 2024. 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 will explore four advanced examples that go beyond the basics, showcasing the power and flexibility of Vue HTTP requests.
  • 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
  • Third-party API Integration in Asp.NET Core Web APIFeb 20, 2024. 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 third-party APIs, which provide access to external services and data.
  • Rate Limits for Efficient Resource ManagementFeb 19, 2024. Rate limits are crucial for efficient resource management. Rate limits restrict the frequency of requests or actions within a defined timeframe, preventing system overload and ensuring fair resource distribution. It is essential for maintaining optimal performance and reliability in various computing environments.
  • Use .http files in Visual StudioFeb 13, 2024. 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 streamline API testing by allowing requests.
  • Mastering Middleware in .NETFeb 13, 2024. Discover the role and importance of middleware in .NET development. Explore its implementation, patterns, and integration within the ASP.NET request processing pipeline for enhanced application functionality and flexibility.
  • 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.
  • 5 Ways To Handle Rest API Request In React Using CRUD FunctionsJan 31, 2024. Manage REST API requests in React using CRUD operations. Vanilla JS employs Fetch API, useState, and useEffect. Axios library offers cleaner syntax with interceptors. Extend Axios for CRUD operations.
  • HTTP Requests in .NET Core with HttpClient and HttpClientFactoryJan 30, 2024. 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 optimal configuration.
  • 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:
  • 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.
  • 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.
  • Handling HTTP Patch Method in AngularJS and C#Jan 12, 2024. 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 AngularJS controller leverages PATCH requests to the C# backend's Web API.
  • 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.
  • Handling HTTP Post Request Method in AngularJS Frontend and C# BackendDec 29, 2023. 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, typically triggering the creation of new entries in databases or systems. POST requests contain a body carrying data to be processed by the server, making it integral for adding fresh content or initiating operations that cause a state change on the server
  • 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.
  • Handling HTTP Get Request Method in AngularJS Frontend and C# BackendDec 26, 2023. 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 initiated from the frontend interface are managed, interpreted, and responded to by the C# backend, illustrating the communication flow and methods for handling data exchange between the frontend and the server-side C# logic.
  • 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.
  • Building Azure HTTP Trigger Function to Generate QR Codes from Post Request ResponsesDec 24, 2023. 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.
  • Send HTTP Request to SharePoint and get Response using Power AutomateDec 19, 2023. HTTP Request to SharePoint and get Response using Power Automate
  • View in React.js within the MVC ArchitectureDec 19, 2023. Explain how to work with the View in the MVC pattern.
  • Using RESTSharp for CRUD Operations in ASP.NET Core Web APIDec 19, 2023. 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 focus on implementing functionality rather than managing low-level HTTP communication.By breaking down each operation—POST, PUT, DELETE, GET, PATCH—and providing corresponding code snippets, the process of creating, retrieving, updating, and deleting resources becomes more accessible. The RestClientHelper class encapsulates RESTSharp configuration, promoting code reusability and maintainability.
  • 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.
  • 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.
  • 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.
  • .NET Core: Understanding of Scopes and Lifetime ManagementNov 17, 2023. Scopes and Lifetime Management in .NET Core: A Comprehensive Guide to Dependency Injection and Object Lifespan
  • What is an API Gateway and What are the Functionalities of the API Gateway?Nov 12, 2023. This article explains the overview of API Gateways and their key functionalities are well-structured and informative. It covers the fundamental concepts, roles, and capabilities of API Gateways in a way that is accessible to both beginners and experienced developers.
  • 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.
  • The Dark Side of Life as a Software EngineerNov 06, 2023. Yes, there's a dark side in the life of a software engineer. This article provides a comprehensive and insightful exploration of the lesser-known challenges and complexities that software engineers encounter in their profession. By addressing various facets of the software engineering profession, you shed light on the often unseen struggles that many individuals in the field face.
  • Counting Cycles in Undirected Graph with DFSOct 26, 2023. This is a graph problem to count the noumber of cycles with length n using Depth First Search
  • 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.
  • Axios with React/React Native for HTTP RequestsOct 23, 2023. This article explains how to use Axios library in react native for making http requests
  • Mediator Design Pattern in ASP.NET Core Web API with 3-Tier ArchitectureOct 19, 2023. The Mediator Design Pattern is a behavioral design pattern that defines an object that centralizes communication between a set of objects. It promotes loose coupling between components by preventing direct connections between them. Instead of components communicating directly, they communicate through a mediator.
  • How does ASP.NET Core Process a Request?Oct 13, 2023. 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?Oct 12, 2023. 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.
  • What is Action, Non-Action Methods and Types of Action ResultsOct 10, 2023. In ASP.NET Core, actions are the methods within a controller that handle HTTP requests and produce HTTP responses. These actions can return different types of action results, which determine how the response is formatted and sent back to the client. The term "non-action methods" likely refers to methods within a controller that are not intended to directly handle HTTP requests as actions do.
  • 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.
  • How to enable CORS in .NET 7Sep 26, 2023. Enabling CORS (Cross-Origin Resource Sharing) in .NET 7 involves configuring your application to allow cross-origin requests. This is important when your web application hosted on one domain needs to make requests to a server hosted on a different domain. CORS helps ensure that these cross-origin requests are safe and authorized.
  • 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.
  • Detecting Cycles in Undirected GraphsSep 25, 2023. This C# class, Detect_cycle_in_an_undirected_graph, identifies cycles in undirected graphs using Depth-First Search (DFS). It represents the graph and checks for cycles efficiently. Time complexity: O(V + E), Space complexity: O(V + E).
  • 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.
  • Error Handling in .NET Core Web API with Custom MiddlewareSep 19, 2023. In this article, we explore global exception handling in .NET Core Web APIs using Middleware. Middleware is a critical component in the request-response pipeline, offering flexibility in handling requests and responses. We'll guide you through the creation and implementation of a custom middleware for global exception handling.
  • 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.
  • Exploring the Art of Middleware Creation in .NET CoreSep 17, 2023. This comprehensive article delves into the various methods of creating middleware in .NET Core, offering real-world examples to illustrate each approach. From inline middleware to class-based solutions and extension methods, you'll gain a thorough understanding of how to shape your application's request-response pipeline effectively. Learn how to order your middleware components for optimal execution and empower yourself to build robust and efficient web applications with ASP.NET Core.
  • 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.
  • Kahn's Algorithm for Detecting Cycles in Directed GraphsSep 07, 2023. This C# code implements Kahn's algorithm to detect cycles in a directed graph. It represents the graph using adjacency lists and provides methods for adding edges and checking for cycles.
  • Detect Cycle in a Directed GraphSep 06, 2023. This C# code snippet efficiently detects cycles in a directed graph using Depth-First Search (DFS). It employs an adjacency list represented by a Dictionary<int, List<int>> and returns a boolean indicating whether a cycle is present.
  • ASP.NET (4) - Life CycleSep 04, 2023. This article will discuss ASP.NET life cycle.
  • ASP.NET (4-1) - Page Life Cycle: DebuggingSep 04, 2023. In summary, debugging in ASP.NET Page Life Cycle involves closely monitoring the execution flow, inspecting control states, and handling exceptions to identify and resolve issues efficiently. Understanding the life cycle events and their order helps developers pinpoint problems and ensure smooth web application operation.
  • 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].
  • 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.
  • 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.
  • 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.
  • 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.
  • Building Custom Middleware Components for Logging, Error Handling, and Request/Response ModificationAug 09, 2023. ASP.NET Core to handle cross-cutting concerns like logging, error handling, and request/response modification:
  • 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!
  • Salesforce REST API: The Login Request (Authentication Step)Aug 02, 2023. In this article, we will discuss the detailed steps on how to authenticate REST-based requests against Salesforce Org. We will explore the REST payloads for the Request & Response cycle for the request.
  • Resolving CORS Origin Using Custom Middle ware in ASP.Net Web API Aug 01, 2023. In ASP.NET Core, middleware is a component or piece of software that sits in the request-response pipeline. Middleware is used to handle or modify incoming HTTP requests and outgoing HTTP responses. It provides a way to add custom logic and behaviors to the application's processing flow.
  • 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.
  • What are Essential Requirements and Accidental Requirements?Jul 28, 2023. Software Requirements Engineering is the systematic process of gathering, documenting, analyzing, and managing the requirements for a software system. It is a crucial phase in the software development life cycle as it lays the foundation for the entire software development process. The primary goal of requirements engineering is to understand and define what the software system needs to accomplish, how it should behave, and what constraints and limitations it must adhere to.
  • 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
  • Disabling Access Requests and Controlling Site Sharing with PowerShellJul 16, 2023. In SharePoint Online, managing access requests and controlling site sharing settings is crucial for maintaining security and governance. In this article we will see how to disable access requests and site sharing permission settings for a SharePoint site using PowerShell.
  • HTTP Requests in Power AutomateJul 12, 2023. In this article, we will deal with HTTPs Request in Power Automate and explore its functionalities, and demonstrate how to leverage its power through coding samples.
  • 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
  • RAD Model Used In Software DevelopmentJun 28, 2023. The RAD (Rapid Application Development) is based on prototyping and iterative development with no specific planning required. The process of writing the software itself involves planning for the development of software products. RAD (Rapid Application Development) is focusing gathering requirements through workshops and focus groups during the early stage of the testing. Rap uses the iterative approach for software development and reuses the prototype in later stages of development.
  • Rest Assured API Automation Testing ConceptsJun 28, 2023. This article provides an overview of various concepts related to API automation testing using the Rest Assured library. It covers topics such as sending query parameters and path parameters, handling authentication using different methods, setting request headers, logging request, and response details, and using RequestSpecBuilder and ResponseSpecBuilder for common headers and assertions.
  • 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.
  • Spiral Model Used In Software DevelopmentJun 26, 2023. The spiral model combines the idea of iterative development with the controlled and systematic aspects of the first model waterfall.
  • V-Model Used In Software DevelopmentJun 26, 2023. The V model is the SDLC Model where execution of the process happens sequentially. V model is also known as validation and verification. The V model is the extension of the Waterfall model based on the associated testing phase and development stages. This means that every phase in the V model is directly associated with the testing phase this is a highly disciplined phase.
  • What is Software Development Life Cycle (SDLC)?Jun 23, 2023. The software development life cycle is the process followed within a Software Organization. It is the detailed process that describes how to develop, maintain, and replace the software product.
  • 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.
  • How to Send Weekly Reports to a Group of Users in SharePoint?Jun 19, 2023. How can you send weekly reports to a group of users in SharePoint? Also, how do you create an HTML table?

About MVC-Request-Life-Cycle

NA

OUR TRAINING