请问怎样post数据给网页,并得到response(200分)

  • 主题发起人 主题发起人 不不
  • 开始时间 开始时间

不不

Unregistered / Unconfirmed
GUEST, unregistred user!
我使用IdHttp控件,模拟登陆csdn,代码如下
Edit1.Text := 'http://www.csdn.net/index.htm';
Memo1.Text := 'name=myname&pass=mypass&type=1';
IdHTTP1.Request.UserAgent := 'test';
IdHTTP1.Request.ContentType:='application/x-www-form-urlencoded';
IdHttp1.Request.ContentLength := Length(Memo1.Text);
Rsp := TStringStream.Create('');
IdHttp1.Request.ContentType := 'POST';
IdHttp1.Request.URL := Edit1.Text;
IdHttp1.Post(Edit1.Text, Memo1.Lines, Rsp);
Memo2.Text := Rsp.DataString;
 
你看demo是怎样做的,delphi6/demos/indy/HTTPClient
 
我的demo中没有这个子文件夹[:(]
 
谁有demo,可以发给我吗
wisure@hotmail.com
 
这个DEMO要去网上下载!delphi7不带!
 
后退
顶部