Resources  
  • What Are Data Attributes in HTML, and How Are They Used?Mar 28, 2024. Know the data attributes in HTML. Data attributes are commonly used in conjunction with JavaScript and CSS to enhance the functionality and styling of web pages.
  • Disable Social Bar (Like, Share and Views) in SharePoint OnlineMar 27, 2024. Learn how to manage the Social Bar feature in SharePoint Online modern pages. Disable it at either the site or tenant level using PowerShell commands for efficient administration. No UI option available.
  • Create Web Roles and Assign Them to Contact in Power PagesMar 26, 2024. Creating and assigning web roles in Power Pages is a process that plays a fundamental role in securing your site and managing user access efficiently. By carefully planning your web roles and permissions, you can ensure that users have a seamless experience while protecting sensitive information and functionality
  • What is Blazor WebAssembly?Mar 24, 2024. Blazor WebAssembly, a client-side web framework powered by .NET and C#, empowers developers to craft dynamic and interactive web applications directly in the browser. In this article, we'll explore the capabilities, advantages, and potential of Blazor WebAssembly in revolutionizing web development.
  • 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.
  • Understanding Classic Page in SharePointMar 07, 2024. Classic pages in SharePoint refer to the traditional layout and design structure used for creating and managing content. These pages typically utilize web parts, customizable layouts, and the ribbon interface for editing.
  • Boosting Web Page Performance with the Defer AttributeMar 06, 2024. JavaScript plays a vital role in enhancing the interactivity and functionality of web pages. However, the way scripts are loaded can significantly impact the user experience and overall performance of a website. In this article, we'll delve into the defer attribute in JavaScript.
  • MSAL for Vanilla JS SPA: Get JWT Access & ID TokensMar 01, 2024. This document provides an overview of Microsoft Authentication Library (MSAL) and its role in implementing secure authentication in Vanilla JavaScript Single Page Applications (SPAs). It discusses the significance of MSAL in obtaining JWT (JSON Web Token) Access Tokens and ID Tokens from Microsoft identity services.
  • [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#
  • Using Plugin.Maui.Popup to Create Eye-Catching Popups in AppsFeb 28, 2024. Learn how to utilize Plugin.Maui.Popup to incorporate popup functionality into your Xamarin.Forms application. Follow step-by-step instructions to install the package, create custom popup pages, and call popups from the code behind.
  • 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
  • D365 Data Retrieval: FetchXml, Paging Cookies, and PowerShellFeb 20, 2024. Prepare your PowerShell environment for Dynamics 365 with crucial commands: Install Microsoft.Xrm.Data.PowerShell module for interacting with Dynamics 365 data. Set execution policy to RemoteSigned for internet script execution.
  • How to Create Modern Site Page in SharePoint Online?Feb 07, 2024. SharePoint has evolved to meet modern collaboration needs, with the introduction of modern site pages providing dynamic and user-friendly interfaces. This article explores the differences between modern and classic site pages.
  • 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.
  • Deploying a React App to GitHub PagesJan 29, 2024. In this article, we will learn how to deploy your React app to GitHub Pages. Follow steps like creating a GitHub repository, adding dependencies, updating package.json, pushing code updates, and viewing the deployed app.
  • 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:
  • Understanding Page Redirection in TypeScriptJan 20, 2024. Page redirection is a crucial mechanism in web development that involves directing search engines and users to a different URL from the original one. This process can occur within the same server, across different servers, or even on distinct websites. Unlike refreshing a page, redirection is a deliberate action, often implemented using JavaScript to enhance user experience.
  • 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.
  • How to create a Logic App to insert Page number into PDF Jan 03, 2024. In this article, we are going to learn about How to create a Logic App to insert Page number into PDF
  • 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.
  • How to Create Login page in PowerApps using SharePointDec 27, 2023. PowerApps with a secure login screen. Learn the step-by-step process, from designing the interface to connecting to data sources, validating user credentials, handling navigation, and ensuring application integrity.
  • 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.
  • 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.
  • Adding Report Pages as Custom Tooltips in Power BIDec 13, 2023. Adding Report Pages as Custom Tooltips.
  • Trigger Power Automate Flow Utilizing Ultimate Forms Nov 30, 2023. How a Power Automate Flow be started in response to a particular SharePoint form update?
  • 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.
  • 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.
  • TabbedPage in .NET MAUIOct 22, 2023. In this article, you've introduced the concept of TabbedPage in .NET MAUI, a versatile framework for building cross-platform mobile and desktop applications. You've thoughtfully structured your explanation, providing a comprehensive guide for both newcomers and experienced developers.
  • Delete records from GridView without Page Reload using jQueryOct 03, 2023. In this article, we will use jQuery to delete records from GridView so that their is no page reload. The codes developed here can be copied and used in any of your web application.
  • 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.
  • Publish A Blazor Or Any Webapp On GitHub Pages For FreeSep 27, 2023. Looking to host your website for free, look no further. I'll teach you how to publish your website for free on Github pages.
  • 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.
  • Working with FlyoutPage in .NET MAUISep 25, 2023. In this article, we delve into .NET MAUI's FlyoutPage, a critical element in-app navigation. If you're new to .NET MAUI, it's advisable to review prior articles in this series
  • 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!
  • Convert Web Page to PDF in C#Sep 20, 2023. Learn how to create PDFs from web content in C# using the WebBrowser control. Ideal for generating order or transaction details in applications like Shopify.
  • 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.
  • 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.
  • Working With NavigationPage In .NET MAUISep 04, 2023. In this article, we will learn about the NavigationPage in .NET MAUI.In .NET MAUI (Multi-platform App UI), the NavigationPage is a fundamental navigation container that allows you to manage the navigation flow and hierarchy of pages within your mobile and desktop applications. It is a key component for creating structured and user-friendly navigation experiences. Here's a description of how to work with NavigationPage in .NET MAUI:
  • SignalR to enable real-time communication between clients and the serverSep 04, 2023. SignalR to enable real-time communication between clients and a server. SignalR is a library for ASP.NET that allows you to build real-time, interactive web applications. In this example, we'll create a simple chat application where clients can send and receive messages in real-time.
  • 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.
  • How to Run HTML page in VS CodeAug 22, 2023. This article will introduce the ways to run HTML page in VS Code.
  • 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.
  • 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!
  • Configure OpenID for Okta Integration in Customer PortalAug 03, 2023. Learn how to seamlessly integrate Okta with OpenID Connect for your customer portal. Configure applications, add sign-in/sign-out URIs, and create authorization tokens for efficient OKTA user creation.
  • 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.
  • Flyout Page in .NET MAUIJul 30, 2023. In this article, we will see how we can implement Flyout Page in .NET MAUI project.
  • Adding Highlighted Content Web part in SharePoint Online PageJul 26, 2023. The Highlighted Content Web Part in SharePoint Online allows dynamic display of content from various sources, including document libraries and SharePoint sites. Use of Highlighted Content Web part.
  • 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.
  • How To Fix "This page can't load Google Maps correctly."Jul 20, 2023. Google Maps has become an essential tool for displaying interactive maps on websites and applications. However, encountering the error message "This page can't load Google Maps correctly" can be frustrating for both users and developers. This error typically arises due to misconfigurations, API issues, or billing-related problems. In this article, we will explore the common causes of this error and provide step-by-step solutions to fix it.
  • 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
  • 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.
  • Enhancing Accessibility in Web Pages According to "WCAG"Jul 10, 2023. Creating web pages that are accessible to everyone is essential. Web Content Accessibility Guidelines (WCAG) provide a comprehensive framework for ensuring websites are usable and inclusive for individuals with disabilities. By adhering to WCAG guidelines, web developers and designers can optimize their websites to accommodate diverse needs and provide equal access to information and services. This article explores the key principles of WCAG and offers insights into implementing accessibility features on web pages. and some other Terminolges Regarding Web page Optimization.
  • How to Fix "Form Elements do not have Associated Labels"Jul 07, 2023. When form elements do not have associated labels, it can make it difficult for users to understand the purpose or context of those elements. Adding clear and descriptive labels is important for accessibility and usability. Here's a step-by-step guide on how to solve form elements do not have associated labels issue.
  • Web Page Performance Optimization Through Lighthouse Jul 06, 2023. Examines the essential strategies and techniques for enhancing website performance with Google Lighthouse, a potent tool. This article explores the skilled process of web page optimization, discussing issues like image and code optimization, utilizing browser caching, reducing render-blocking resources, and utilizing Lighthouse's thorough speed analyses.
  • 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.
  • 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.
  • Interview Questions & Answer For Full Stack .NET DeveloperJun 02, 2023.
  • Power Pages - Avoid Duplicate 'Tracking Code' in Portal AnalyticsMay 25, 2023. This article explains how to avoid duplicate ‘Tracking Code’ elements in Power Pages.
  • Power Pages - Dynamic execution of long FetchXML without $batchMay 17, 2023. Dynamic execution of long FetchXML without $batch
  • Power Pages - Custom "Select All - Unselect All" button in Lookup records dialogMay 11, 2023. In Power Pages (Earlier Power Apps Portal), OOB support for selecting / deselecting all grid rows in “Lookup records” dialog is not found. Hence, I have built one client-side custom generic feature using Jquery which will be reusable for all such “Lookup records” dialog.
  • File Upload in ASP.NET MVC in 3 Different WaysMay 04, 2023. File Upload in ASP.NET MVC - 3 different ways
  • Exploring NavigationManager in Blazor: Navigating to Components and PagesMay 01, 2023. In this article, we'll explore NavigationManager in Blazor, which provides a simple and efficient way to navigate to different components and web-pages.
  • 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
  • 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.
  • Modernizing Classic And Wiki Pages In SharePoint OnlineApr 10, 2023. This article explains how to modernize classic pages and wiki pages using PnP PowerShell
  • Ways To Redirect A Page In JavaScriptMar 31, 2023. This article describes the multiple ways to redirect a page in javascript.
  • Improve Page Speed with Lazy Loading for YouTube EmbedsMar 28, 2023. Looking to optimize your site's load times? Check out our guide to lazy loading YouTube videos and start improving your site today!
  • 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 Paging-in-MVC-4

NA

OUR TRAINING