Migration from .Net Web Application (Framework 4.7) into .Net Core Web 8.0

Banu 20 Reputation points
2025-01-29T03:37:46.5466667+00:00

Hi,

I would like to migrate my application from .Net Framework 4.7 to .Net Core 8.0 as I would like to have my application in the latest version. My application is in MVP architecture and web pages are aspx (UI part). Is there any easy way to migrate it into 8.0? Kindly suggest.

Thanks

Banu

.NET
.NET
Microsoft Technologies based on the .NET software framework.
4,080 questions
ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,764 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,582 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
11,255 questions
ASP.NET API
ASP.NET API
ASP.NET: A set of technologies in the .NET Framework for building web applications and XML web services.API: A software intermediary that allows two applications to interact with each other.
368 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 70,376 Reputation points
    2025-01-29T21:48:47.57+00:00

    asp.net core has no support for aspx pages, nor are there very good migration tools.

    if you used .aspx as a template engine rather than webforms control tree, then migration is easier. you will want to switch to asp.net core Razor Pages.

    https://learn.microsoft.com/en-us/aspnet/core/razor-pages/?view=aspnetcore-9.0&tabs=visual-studio

    postback handling is different in asp.net core. your server callback just gets the postback data model, there are no UI events.

    note: vb.net is only supported as libraries, not UI code.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.