如何用delphi 向网页传递数据 Delphi / Windows SDK/API
http://www.delphi2007.net/DelphiNetwork/html/delphi_20061215171534114.html
比如实现这种样式的提交    
   
  http://www.abc.com/jieshou.asp?user=1221&id=12      
   
  或者直接   post  
   
   
 

办法一:  
  //...  
  WebBrowser1:   TWebBrowser;  
  //....  
  procedure   TForm1.Button1Click(Sender:   TObject);  
  begin  
        WebBrowser1.Navigate('http://www.abc.com/jieshou.asp?user=1221&id=12');  
  end;  
   
  办法二..N   ,楼下的说说

http://www.matlus.com/scripts/website.dll/Tutorials?DelphiTCPIP&IndyMultiPartFormData&5

用IDHTTP控件  
  IDHTTP.get('http://www.abc.com/jieshou.asp?user=1221&id=12   ');  
  或者  
  IDHTTP.Post();

相关文章:

  • 2022-12-23
  • 2021-09-09
  • 2022-12-23
  • 2022-12-23
  • 2021-11-20
  • 2022-12-23
  • 2021-06-23
猜你喜欢
  • 2022-12-23
  • 2021-12-25
  • 2022-01-21
  • 2021-08-24
  • 2022-12-23
  • 2022-12-23
  • 2021-06-30
相关资源
相似解决方案