Hallo,
irgendwie hab ich ein Problem mit idHttp. Unzwar kommt bei einem klick
auf einen Button immer eine Fehlermeldung. (Wenn ich aus Delphi herraus
starte)
Zitat:
Im Proket Projek1.exe ist eine
exception der Klasse EIdHTTPProtocolException
aufgetreten. Meldung: 'HTTP/1.1 302 Found'. Prozess wurde angehalten. Mit einzelne
Anweisung oder Start fortsetzten.
Wenn ich normal Starte (doppelklick auf die Exe) und den Button drücke
kommt.
Zitat:
HTTP/1.1 302 Found
Und noch schnell der Code. =)
Delphi-Quellcode:
sl := TStringList.Create;
sl.add('Vorname=' + Edit1.Text);
sl.add('Name=' + Edit2.Text);
sl.add('Nick=' + Edit3.Text);
sl.add('Passwort=' + Edit4.Text);
sl.add('Mail=' + Edit5.Text);
sl.add('Homepage=' + Edit6.Text);
sl.add('Geburtstag=' + Edit7.Text + '.' + Edit8.Text + '.' + Edit9.Text);
s := idHttp.Post(scripturl,sl);
FreeAndNil(sl);