Click to See Complete Forum and Search --> : Put an application to web page


October 31st, 1999, 10:29 AM
I have a standard window application. Is it possible to put it into a web page and let user to download?

Thanks

Alex

santulan
October 31st, 1999, 10:22 PM
Alex,
Follow the steps -
1. Make the installation programe. (I hope it is already there)
2. Again convert into single .Zip or .EXE file. This file should reside on the web server.
3. Make the link on your page page. In front page, etc. There is visual way to link. When you link, give the path to your EXE or Zip file.
Following is the HTML link which down load an applet, you should use the complete path to access the file.
<a href="fphover.class"> Download Java Applet</a>
On clicking the "Download Java Applet the computer will download it.
I hope this will solve the problem.

Santulan

November 1st, 1999, 12:33 PM
Thank you Santulan, I will try it out.

Alex