I wonder, do you know how to make a program witch can go tio a specific url and fill the html form there is ?
For example , a safelist, when you go on a form page on the web, the program fill automatically the form with informations you have set before (like robotform).
I am not sure about this, but I think you would have to make a plugin for the browser. Something that can intercept the html, find the form input fields, and stick in the values.
But .. search out some of Freak's (and possible Sparkie's) code snippets, as there may be a way if you are using it in the webgadget with Pure.
You can download the html file.
Parse the fields from <FORM> ... </FORM>
then you will know what kind of data it needs.
Then use the POST command to post the data to the webserver holding the form. if the webserver has some kind of protection it can be or AUTH (which mean u need Login/Pass but i doubt that thats what you need) or it checks the REFRER tag in the html POST header.
For using the POST with http search the forum for a code. for more info on REFRER tag search the HTML RFC.