I'm sure this is an easy one for you old pros?
I am using filemaker to browse some records, and I have created a button in my filemaker layout that launches a web browser with a certain url. Right know, I have to manually enter 3 numbers into 3 fields of a form on that webpage. Is there a way I could pass the info in the url so that when the page loads it will have the form already filled in with my data? I have figured out how to do this with some other websites that pass the information in the url (so I just end up at the page that I want, as though I pressed the submit button), but can not figure out how to do it when a webpage doesn't pass that data in the url. How can I skip this page and just get to the destination with my data sent along in the form's 'post' method?
I'm sure I sound like a retard, but I am just a hack looking for a shortcut.
1k thanks!
The url that I need help with is here:
and i think this is the html that I can't seem to figure out:
I am using filemaker to browse some records, and I have created a button in my filemaker layout that launches a web browser with a certain url. Right know, I have to manually enter 3 numbers into 3 fields of a form on that webpage. Is there a way I could pass the info in the url so that when the page loads it will have the form already filled in with my data? I have figured out how to do this with some other websites that pass the information in the url (so I just end up at the page that I want, as though I pressed the submit button), but can not figure out how to do it when a webpage doesn't pass that data in the url. How can I skip this page and just get to the destination with my data sent along in the form's 'post' method?
I'm sure I sound like a retard, but I am just a hack looking for a shortcut.
1k thanks!
The url that I need help with is here:
and i think this is the html that I can't seem to figure out:
Code:
<form method='post' name='pageform' action='https://ttax.co.la.ca.us/secured_asp/vcheck_new/index.php?page=main&SSID=r636gmbit671k3d4ji98lce363'>
Enter <a href='http://ttax.co.la.ca.us/Proptax/Ttc/ttc/TTCAIDNum.html'>ASSESSOR'S IDENTIFICATION NO. (AIN)</a>
<br />
which consists of: Map Book, Page and Parcel.
<br />
<table class='aintable'>
<tr>
<td><input type='text' name='mapbook' size='6' maxlength='4' value='' /></td>
<td><input type='text' name='page' size='5' maxlength='3' value='' /></td>
<td><input type='text' name='parcel' size='5' maxlength='3' value='' /></td>
</tr>
<tr>
<th>Map Book</th>
<th>Page</th>
<th>Parcel</th>
</tr>
</table>
<input type='image' src='images/Search.gif' alt='Click Here To Search For Payment Status' />
</form>
Comment