Embed a windows application in a browser

J

johnThemod

Hi,

Im new to these groups,

Im wondering is it possible to develop a windows application(c#) and
embed it into a browser. So if a user goes to this page, the
application woudl be downloaded.

kinda the way you can embed applications in applets for Java,

Thanks
John
 
S

Stoitcho Goutsev \(100\)

John,

I don't know about embeding a whole application, but you can create a
control that is used in the same way as web browsers ActiveX controls. You
can also look at the Smart Clients applciation. They are not embedded in the
borwser but can be run from a URL. Basically you can create a windows forms
application hosted in IIS and when somebody navigtates to its url the
framework will download the dlls (cache them in case you hit the url again
later on) and run the application. When the dlls are cached next time you
hit the URL the framework is supposed to check the versions and update the
dlls accordingly. Keep in mind that not all windows forms applications can
work in this scenarios; again read articles about Smart Clients to find out
any limitations this approach has.

I have never created such an application and I've heard that it doesn't work
as well as advertised, though.
 
C

Colin Neller

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top