Windows form in a web form in.NET

  • Thread starter Thread starter sonu
  • Start date Start date
S

sonu

I have a windows application to scan images,I want to call its .exe
file in my asp.net form.
Can anybody tell how can i do this.So that my windows application can
run in client machine
 
sonu said:
I have a windows application to scan images,I want to call its .exe
file in my asp.net form.
Can anybody tell how can i do this.So that my windows application can
run in client machine

Using ClickOnce you can "pop up" your .net 2.0 windows forms app that is
deployed via ClickOnce from a webpage. You can even pass variables to
the app via URL. I use this in a similar app that scans via TWAIN and
uploads to a webservice. I pass authentication via the URL.
 
Back
Top