Newsgroups : Borland : borland.public.delphi.internet.winsock : 2006 Dec : Re: Help on appropriate technology
| Subject: | Re: Help on appropriate technology |
| Posted by: | "Richard Teller" (r.tell..@e-tabs.com) |
| Date: | Thu, 14 Dec 2006 14:41:51 |
Many thanks, Remy.
I have downloaded and installed Indy 10 but am having an installation issue
under Delphi 5.
(On starting Delphi I get errors about not being able to load
dclIndyCore50.bpl and other files because they use FileCtrl which is already
in Vclx50)
I have posted this issue on the atozedsoftware.indy.general which I'm sure
is more appropriate than here.
Thanks again for your help
Richard
"Remy Lebeau (TeamB)" <no.spam@no.spam.com> wrote in message
news:4580cbf6$1@newsgroups.borland.com...
>
> "Richard Teller" <r.teller@e-tabs.com> wrote in message
> news:458054cb$1@newsgroups.borland.com...
>
>> Can I "go" to a (say) html/php page, fill it in with values, submit it
>> and read the resulting HTML all invisible to the user, using code
>> rather than user input?
>
> Yes. Even better, without going to the form's page at all (unless you
> want
> to parse the form beforehand, that is). You can submit the desired values
> directly to the target script.
>
>> If so, do you have a pointer to an example or two?
>
> First and foremost, what you submit depends on what the webserver actually
> requires, based on the HTML of the form you are submitted.
>
> A simple, using Indy (http://www.indyproject.org',
> SubmittedValues);
> finally
> SubmittedValues.Free;
> end;
> // use HTML as needed ...
> end;
>
> There are other ways to submit more advanced forms, such as
> "multipart/form-data" forms for uploading files.
>
>
> Gambit