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 ?
相关问题
- Laravel Option Select - Default Issue
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Carriage Return (ASCII chr 13) is missing from tex
- Why am I getting UnauthorizedAccessException on th
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.