如果用 idhttp 的 post方法提交这个页面的表单    http://www.mirdy.cn/add.asp?action=sfadd    请写下代码  我把分都给你

解决方案 »

  1.   


    var
      Test: TStringList;
    begin
      Test:= TStringList.Create;
      Try
        Test.Add('action=sfadd');
        IdHTTP1.Post('http://www.mirdy.cn/add.asp', SS);
      finally  
       Test.Free;
      end;
    end;
      

  2.   

    笔误~var
      Test: TStringList;
    begin
      Test:= TStringList.Create;
      Try
        Test.Add('action=sfadd');
        IdHTTP1.Post('http://www.mirdy.cn/add.asp', Test);
      finally  
       Test.Free;
      end;
    end;
      

  3.   

    兄弟理解错了  我是想提交    action=save.asp 这个表单   请看下http://www.mirdy.cn/add.asp?action=sfadd     请再帮我写下 好吗
    谢谢