I am using delphi and idhttp load a login page, but its takes long time to load because the next page contain some images, so i want to speedup loading that page by ignoring loading that images too, i need only the htmlcode, so how to do that?
here is a code same of what i am facing
procedure TForm1.Button2Click(Sender: TObject);
var
HTTP : TIdHTTP;
Post : TStringList;
htmlCode : String;
begin
HTTP := TIdHTTP.Create(nil);
Post := TStringList.Create;
Try
HTTP.Request.Accept := '';
HTTP.AllowCookies := True;
HTTP.HandleRedirects := True;
{The solution is something here, playing arround with HTTP Options to disable
loading images.}
Post.Add('username=' + Edit2.Text);
Post.Add('password=' + Edit3.Text);
htmlCode := HTTP.Post('http://testsite.com/login.php', Post);
{to reach here its takes near 5/6 till 7 Seconds?!!
we know the token time is for loading the page, there images, so how to disable loading images
so we speed up login time,
in other words i need only the 'htmlCode' String not the data that related to the page such images, styles ..}
Finally
Post.Free;
HTTP.Free;
End;
end;
thank you for advance
TIdHttpdoes not download images. it downloads only html result. – teran Aug 25 '12 at 10:50