Hi again, does anyone know how to delete away a text file from a JSP page by choosing the file to be deleted then when you press a delete button, it will delete the file away?
If it's on the server side... you can try the following piece of code :File f = new File ( "path-to-my-filename-to-delete" );f.delete();f = null;In you Jsp page don't forget to import the java.io package.Sylvain Gibier