Convert VB.net Solution to Asp.net Core

by John H
~1 minute

January to February 2021 I converted an old Asp.net 4 web application over to an Asp.net Core MVC project.  This ultimately brought the project up to a modern framework. This involved moving from Masterpages to Razor CSHTML, moving the routing into an MVC architecture and implementing redirect directives to handle the move. 

Additionally the original system was created with Apps embedded inside of other applications.  This might have been an effective structure in the past, but since overtaking maintenance of the system it just proved and unnecessary burden and by consolidating all of the solutions into one it makes it easier to locate and update assets when needed.  I was also able to remove some of the unnecessary JS files making it somewhat lighter.

I really wanted to move the project over to .NET core due to its development flexibility.  Switching lets future development happen without the need for a Microsoft development environment.  Personally I'd much rather develop on Mac and this choice allows that.

There was also a need to move the project over to C# code due to better documentation and also Microsoft no longer developing VB.net in the future.  This just made sense.

Related Articles

Convert VB.net Asp.net 4 site to Nuxt.js static site

I converted a static VB.net Asp.net site (KYexports.com) over to Nuxt.js.  This makes the site...

John H John H
~1 minute

Convert SQL Db application over to Flat JSON Vue appliation

Vendor listing / filtering application that was originally built in VB.net and SQL server.  The...

John H John H
~1 minute

Dynamic Field Sorting for Wordpress ACF

A site my employer has uses the Advance Custom Fields plugin for Wordpress. They use the plugin...

John H John H
~1 minute