浪
浪子心
Unregistered / Unconfirmed
GUEST, unregistred user!
var
Params: TStrings;
HTML: String;
begin
Params:=TStringList.Create;
try
IdHttp.HandleRedirects:=True;
HTML:=IdHttp.Post(DFW_LOGIN_URL,Params);
运行上面的代码提示错误如下:
[error]Unit1.pas(30):Ther is no overloaded verison of 'post' that can be called with these arguments
[Fatal Error] Project1.dpr(5):Could not compile used unit "Unit1.pas"
请大家帮忙看看,是那里错了。
Params: TStrings;
HTML: String;
begin
Params:=TStringList.Create;
try
IdHttp.HandleRedirects:=True;
HTML:=IdHttp.Post(DFW_LOGIN_URL,Params);
运行上面的代码提示错误如下:
[error]Unit1.pas(30):Ther is no overloaded verison of 'post' that can be called with these arguments
[Fatal Error] Project1.dpr(5):Could not compile used unit "Unit1.pas"
请大家帮忙看看,是那里错了。