Converting ASP.NET Web Forms application into Desk

2019-08-02 20:55发布

问题:

How To convert ASP.NET web forms Application into Desktop Application : \ The target of the conversion is to keep the HTML Interface with JQuery scripts , ... etc So is there any available tool that can do this and if not are there steps to follow to make good & fast conversion ?

回答1:

Converting an Asp.net application to a Winform application is not easy and almost not possible to convert automatically in a nice/maintainable. Web applications and WinForms are inherently different, and should be designed differently. Using a tool to convert then cannot be recommended.

Probably you will have to move all the common business logic functionalities to a class library and reuse them while designing the UI logics from the scratch.