>I'm afraid a universal solution is not possible. Too bad! :( >I'd look at the source of HTML form page to see form field names, and >URL of the form's action. The form may also contain hidden fields for >username/password etc., and some fields may be even set by JavaScript >in form's onSubmit event. Then I'd try sending POST request from REBOL >(IIRC there's an example somewhere on rebol.org), with encoded form >fields, to the address from form's action. >If you told me the particular web site (is it a free web hosting >service?), I may try it myself, since I too have a dynamic IP address >and I want to make a redirect from some public website to my home >computer. I use Crosswinds, and this is what the upload form looks like!!: <form method="post" action="http://209.208.163.42/cgi-bin/upload.cgi" enctype="multipart/form-data"> <input type="hidden" name="user-name" value="THIS IS MY USER-NAME WHICH I TOOK OUT"> <input type="hidden" name="pass-key" value="THIS IS MY PASSWORD WHICH I TOOK OUT!"> <input type="hidden" name="work-dir" value=""> <input type="hidden" name="page" value="0"> <input type="hidden" name="form-type" value="fm"> <input type="hidden" name="num-files" value="19"> <hr> <!-- $Id: fm2.html.form,v 1.1 1998/01/03 21:44:20 greg Exp $ --> <h1>Online File Creating and Uploads</h1> <table borders="0" cellpadding="0"> <tr> <td>File 0 name:</td> <td><input type="file" name="upload0" size="40"></td> </tr> <tr> <td>File 1 name:</td> <td><input type="file" name="upload1" size="40"></td> </tr> <tr> <td>File 2 name:</td> <td><input type="file" name="upload2" size="40"></td> </tr> <tr> <td>File 3 name:</td> <td><input type="file" name="upload3" size="40"></td> </tr> <tr> <td>File 4 name:</td> <td><input type="file" name="upload4" size="40"></td> </tr> <tr> <td>File 5 name:</td> <td><input type="file" name="upload5" size="40"></td> </tr> <tr> <td>File 6 name:</td> <td><input type="file" name="upload6" size="40"></td> </tr> <tr> <td>File 7 name:</td> <td><input type="file" name="upload7" size="40"></td> </tr> <tr> <td>File 8 name:</td> <td><input type="file" name="upload8" size="40"></td> </tr> <tr> <td>File 9 name:</td> <td><input type="file" name="upload9" size="40"></td> </tr> </table> <hr> <center> <input type="submit" value="Submit"> <input type="reset"> </center> </form> I deleted some stuff in it, that was unrelevant for this topic... I must confess, that I don't have a clue about rebol, I just got a hint somewhere, that it probably could be made in rebol!! I'd be truely happy, if you (or someone else) could help! Regards Kasper ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com
