且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

将Web应用程序链接到Windows窗体

更新时间:2023-12-06 10:37:28

Not a good idea. You cannot call a windows form application on the client machine - security will not allow that, it is classed as "probable virus activity" and you don''t want to call a winforms app on the server, because there will be no-one there to look at it.

Instead, create the processing class in a DLL, and call that instead.