I am working to migrate an old VB6 Forms application to a browser based application, and need some input on a few options. The application needs to be able to be distributed via email, run on the client's computer (completely local) without access to the Internet, and have the ability to someday be converted to a full functioning web application (hosted instead of local) that would no longer require email distribution.
- Normal .Net web application (C#).
- would this require IIS to be set up?
- Embed .Net WinForm in browser using WPF
- like with this codeproject example
- WPF Browser Application
- This seems like it could be deployed and executed locally, but can it be migrated to a web app later on?
Thanks for any input.