Hello, I had created a jsp file with this simple code source: <form name="form1" method="post" action=""> <input type="submit" name="Submit" value="Ouvrir"> </form> I would like when I click on the submit button that's opening a FileDialog. Is it possible?
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12271
1
posted
0
A java.awt.FileDialog would have to be started from an application or applet on the user's computer. If an applet it would have to be signed etc because browser security won't let a normal applet get at the file system. Bill ------------------ author of:
Originally posted by William Brogden: A java.awt.FileDialog would have to be started from an application or applet on the user's computer. If an applet it would have to be signed etc because browser security won't let a normal applet get at the file system. Bill