Click here to Skip to main content
15,887,821 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have an application written in abal++. Due to convenience we would like to convert it into ASP.NET.
Aside rewriting the whole program, is there any other options available to convert the app to ASP.NET without rewriting the whole app.

Thanks for your help.

Denisky.

What I have tried:

All effort proved futile. The only way out suggested to us is to rewrite the whole program.
Posted
Updated 28-Jan-22 2:30am
Comments
_Asif_ 28-Jan-22 7:31am    
what is abal++?

No. The only option you have to is rewrite the entire app.
 
Share this answer
 
Abal++ is not available for .NET, so you really have no option but to rewrite the whole app. Even if there was a "direct conversion", what you would end up with would not be "good code" in the target language – they are based on very different frameworks, and what makes something work in one language does not always "translate" directly into another.
So what you end up with is very poor code, that is difficult if not impossible to maintain, that can’t be upgraded nicely, and that will cause you immense headaches if the original is changed. And it'll be a nightmare to debug if it doesn’t work "straight out of the box".
Instead, use the source code as a specification for a new app written in and for the target language / framework and write it from scratch using the original as a "template". You will get a much, much better result that will save you a lot of time in the long run.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900