Page 1 of 1

a bit of help please

Posted: Tue Dec 27, 2005 9:36 am
by Ree
What POST vars and their values will be available to the server when you just go to https://www.iaai-bid.com/aucsearchbyveh.aspx and click 'Advanced Search' radio?

Code: Select all

_EVENTTARGET => 'rbAdvancedSearch';
_EVENTARGUMENT => '';
_VIEWSTATE => '';
searchBy => 'rbAdvancedSearch';
qsVehicleMake => '';
qsVehicleModel => 'All Models';
qsStartYear => '2005';
qsEndYear => '2005';
qsZipCode => '';
qsSearchRadius => '50 miles';
Are the above vars and their values correct? Or did I make a mistake somewhere?

Looks like an odd question but hey I need to know I'm not doing a mistake somewhere :roll:

Posted: Tue Dec 27, 2005 9:47 am
by foobar
I get a runtime error when I follow your link. 8O

Out of curiosity, are you trying to make an API to connect to their application?

Posted: Tue Dec 27, 2005 9:52 am
by Ree
I'm using cURL to POST a bit to their site, just sometimes it works fine, sometimes I get the nice yellow error you have just experienced. weird stuff :? just wanted to check if my vars are all ok.

Posted: Tue Dec 27, 2005 9:56 am
by foobar
Their web app seems to be pretty unstable. It's working now.

To check all POST vars sent by that page, save the HTML on your machine and make all forms point to a script of your choice. Submit, and print_r($_POST) in the destination script. Voila!

Posted: Tue Dec 27, 2005 10:38 am
by Ree
ok, no mistakes, good :)