Hi MeNo,
I presume that you have a particular URL in mind.
In that case, take a look at the Html. You'll see where the Forms are and
where your inputs are. The inputs will have a name or an id. The form will
have a submit action - either Post or Get.
The task is to enter the data into the textboxes and click the checkboxes
and buttons, etc, right ?
Well, not quite. Try again.
The task is to get the right values into those inputs and get the Form to
submit?
Still not quite right. Try again.
The task is to call the URL in the way that it <would> be called if the
data <had> been entered and the boxes and buttons clicked.?
Correct! You don't <have> to do anything with the web page itself. IE
doesn't need to be involved. If you can work out what the URL and posting
behaviour is going to be, you can simulate the whole thing.
Here's an example:
This form will submit a query to Google.
<form method="GET"
action="
http://www.google.com/search"
name="frmSearch" >
<input type="text" name="q" value="Foo">
<input type="submit" value=" Search Google ">
</form>
So will this URL:
http://www.google.com/search?q=Foo
This is how easy it is to simulate a GET. The URL has the same effect as
entering the text and clicking the Search button. (You may be able to do the
same with POST data - package it up as if it were a GET - but I haven't tested
this.)
Does this make sense? And could it be of any use to you?
Come back either way.
If it isn't we can work something out the hard way - using actual
programming. And bring examples of your web pages (attached in a zip, please)
and say what you want to happen.
Regards,
Fergus