Hi Bruce,
Probably form ACTION is this form itself. Try to
open this page in an editor. Check asp code, what get
displayed when input controls, you mentioned, defined. Prpbably it
will look like
<%if controls define%>
submit procedure
<%else %>
Find submit procedure URL and send a request to
it.
You may email me your exact URL at
vladimir[dot]iahnenco[at]scancode[dot]com, I can have a
look.
Regards,
Vladimir
I am testing the access of a website
with Phil Ide's LoadFromURL().
The task is to submit a name and
birthdate to an organization's website so that it will email the
member his Membership #.
My question is "Can a URL be inferred
from the page URL?"
<form name=form1 id=form1
method=post>
<input name =lastname id=lastname value="">
<input name =dob id=dob value="">
<input type=hidden name=txtDummy id=txtDummy
value="dologin">
<input type=submit name=btnsubmit id=btnsubmit
value="Submit">
</form>
I don't know where a form is submitted
if there is nothing in ACTION attribute. I ran the page code
in the debugger to check and saw
document.form1.action =
"" . Is it possible to make a good guess
from this information?