Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Netzwerke (https://www.delphipraxis.net/14-netzwerke/)
-   -   Delphi Felder ein ASP Seite befüllen (https://www.delphipraxis.net/108775-felder-ein-asp-seite-befuellen.html)

Cosamia 19. Feb 2008 13:10


Felder ein ASP Seite befüllen
 
Ja, ich schon wieder.

Ich bin nun ein Schritt weiter und stehe aber schon wieder vor einem neuen Problem.

Ich fülle mit folgendem Code Felder in einer ASP Seite. Jezt fehlt mir nur noch die Idee wie ich ein Button auf der ASP Seite anspreche.

Delphi-Quellcode:
procedure TForm1.PastebtnClick(Sender: TObject);
var iDoc: IHtmlDocument2;
  i: integer;
  ov: OleVariant;
  iDisp: IDispatch;
  iColl: IHTMLElementCollection;
  iInputElement: IHTMLInputElement;
  begin
WebBrowser2.ControlInterface.Document.QueryInterface(IHtmlDocument2, iDoc);
  if not assigned(iDoc) then begin
    ShowMessage(' !!!???');
    Exit;
  end;
  ov := 'INPUT';
  IDisp := iDoc.all.tags(ov);
  if assigned(IDisp) then begin
    IDisp.QueryInterface(IHTMLElementCollection, iColl);
    if assigned(iColl) then begin
      for i := 1 to iColl.Get_length do begin
        iDisp := iColl.item(pred(i), 0);
        iDisp.QueryInterface(IHTMLInputElement, iInputElement);
        if assigned(iInputElement) then begin
          if iInputElement.Get_name = 'WARTUNGSGRUPPE'
           {Wartungsgruppe einfügen}
          then iInputElement.Set_value('Hans Damp');
          if iInputElement.Get_name = 'NAME'
           {Name einfügen}
          then iInputElement.Set_value('Huhu');
           {Button.click}
          if iInputElement.Get_name = 'insert' {und hier sollte der Button Insert angesprochen werden}
            then iInputElement.Get_form.submit;


        end;
      end;
    end;
  end;
end;


Alle Zeitangaben in WEZ +1. Es ist jetzt 00:32 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz