Jump to content

Recommended Posts

Posted

My _IEFormSubmit doesn't work if there are 2 submit buttons

here it is

<input type="submit" name="submit" value="Post" tabindex="4">

<input type="submit" name="preview" value="Preview" tabindex="5">

so is it possible to fix it?

Posted

There are two distinct names

$oIE = _IECreate("http://?????")
$oForm = _IEFormGetCollection($oIE, 2); or 1 or ???

$oBotton = _IEGetObjByName($oForm, "submit")

; Or

$oBotton = _IEGetObjByName($oForm, "preview")

_IEAction($oBotton, "click")

8)

NEWHeader1.png

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...