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

Banu 40 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

Developer technologies ASP.NET ASP.NET Core
Developer technologies ASP.NET ASP.NET API
Developer technologies .NET Other
Developer technologies ASP.NET Other
Developer technologies C#
{count} votes

Accepted answer
  1. Bruce (SqlWork.com) 77,686 Reputation points Volunteer Moderator
    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

0 additional answers

Sort by: Most helpful

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.