================================================== Message: 11 Subject: Web page submit simulate From: Duane Hennessy <[EMAIL PROTECTED]> Date: Thu, 25 May 2006 21:59:53 +1000
How would I simulate the Submit functionality of a web page using the HTTP socket? I want to submit a web form that has hidden fields but do not want to open a web browser to do it. I'm using RB5.5 for windows. Any help appreciated muchly, Thanks -- Duane Hennessy Senior Software Engineer and Systems Architect. Bandicoot Software Tropical Queensland, Australia (ABN: 33 682 969 957) Want Increased Productivity? http://www.bandicootsoftware.com.au ================================================== I'm not really sure but this might be relevant ? Dim form as Dictionary Dim socket1 as New HTTPSocket // create and populate the form object form = New Dictionary form.value("firstname") = "Bob" form.value("lastname") = "Brown" // setup the socket to POST the form socket1.setFormData form socket1.post("http://www.myformlocation.com/form.php",10) //Timeout http.Yield = True Best Regards, Warachet S. _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
