Upgrading an ASP.NET MVC application from .NET Framework to modern .NET requires more than updating version numbers.
This article explains the architectural, tooling, and dependency changes you must consider to modernize safely and efficiently. A must-read for .NET teams planning migration.
Read before you upgrade π c-sharpcorner.com/article/hoβ¦#DotNet#ASPNet#ASPNetMVC#Modernization#Developers#DeveloperTips
Day 14 - #100DaysOfCode
Today, I learned how to display data from my database in ASP.NET MVC using views and action methods in controllers! π
Also:
π§ Customized my CSS by exploring Bootswatch themes and added Bootstrap Icons .
We are getting closer
#ASPNetMVC
Error handling in ASPNET MVC?
Error handling in ASPNET MVC involves using try-catch blocks, custom error pages, global error handling filters, and logging frameworks like Serilog or NLog. It ensures graceful handling of exceptions in web applications. #ASPNETMVC#ErrorHandling
Exploring the ASP.NET MVC Lifecycle
Understanding the lifecycle of ASP.NET MVC is crucial for building robust web applications. Let's dive into the journey a request takes from inception to response:
#ASPNETMVC#WebDevelopment
Demystifying ASP.NET MVC's Data Passers - ViewBag, ViewData & TempData
Ever wondered how data flows between controllers and views in ASP.NET MVC? Let's unveil the secrets of ViewBag, ViewData, and TempData.
#aspnetmvc#dotnet#programming
Caching in ASP.NET MVC
Caching is a technique that improves the performance of web applications by storing frequently used data or content in memory.
#aspnetmvc#caching
A thread π§΅
Sending data from View to Controller in ASP.NET MVC
Want to send info from your UI to your .NET app's core? Buckle up! Here are the common methods:
#aspnetmvc#dataflow#webdev