onsubmit="return submitblabla()

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • onsubmit="return submitblabla()

    Hi,
    ich spreche eine website per VisualBasicScript an und möchte das mein Programm automatisch den Submit button betätigt.
    Dies ist auch kein Problem WENN es so aussehen würde:

    PHP Code:
    appIE.Document.Forms("MeinFormName").submit 
    ABER die WebSite zeigt im Quelltext folgendes an:

    PHP Code:
    onsubmit="return submitblabla() 
    Wie "könnte" ich, bzw. "was" könnte ich für einen Submit ansprechen ?

    So geht es ja nicht wirklich:

    PHP Code:
    appIE.Document.Forms("return submitblabla()").submit 
    Jemand eine Idee?

  • #2
    Ich sehe gerade das submitblabla eine function ist:

    PHP Code:
    function submitblabla ()
        {
            if (
    submitUndWegCnt == 0)
            {    
    submitUndWegCnt++;
                return 
    true;
            }

            return 
    false;
        } 

    Comment


    • #3
      Ich überseh gerade das php-problem?

      Comment


      • #4
        *move*

        Comment

        Working...
        X