Home > Archive > Delphi > March 2004 > WWW Form
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| WickedAlienCreation 2004-03-27, 12:21 am |
| How can I fill a form on web page passing name, adress etc to that form and
then sending it (btw : I'm using Indy components)?
Thnx for any help.
| |
| Andrzej Szukiewicz 2004-03-27, 12:21 am |
| WickedAlienCreation jest odpowiedzialny za popelnienie nastepujacego posta
> How can I fill a form on web page passing name, adress etc to that form and
> then sending it (btw : I'm using Indy components)?
>
> Thnx for any help.
AFAIK you should use TIdHTTP.Post... The second element is the set of
parameters (for example as TStrings) that should be sent to the script
that is processing the form.
| |
| WickedAlienCreation 2004-03-27, 12:21 am |
|
Użytkownik "Andrzej Szukiewicz" <anxdrzej.szxukiewicz@gazeta.pl> napisał w
wiadomości news:c2g8dl$4ne$1@inews.gazeta.pl...
> WickedAlienCreation jest odpowiedzialny za popelnienie nastepujacego posta
>
and[color=darkred]
>
> AFAIK you should use TIdHTTP.Post... The second element is the set of
> parameters (for example as TStrings) that should be sent to the script
> that is processing the form.
>
Yeah but what form shoud the parameters take?
I've seen the example :
Params:=TStringStream.Create('');
Params.WriteString('<var_name1>=var_value');
|
|
|
|
|