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
"Bruce Anderson" < banderson@graphical-db.com> wrote in message news:4b02b195$3832e95c$148dba@news.alaska-software.com...
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?" 
The page is ASP:http://thegroup.org/events/forgotmyid.asp
This is the form:
<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?