a bit of help please

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
Ree
Forum Regular
Posts: 592
Joined: Fri Jun 10, 2005 1:43 am
Location: LT

a bit of help please

Post 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:
Last edited by Ree on Thu Dec 29, 2005 3:53 am, edited 1 time in total.
foobar
Forum Regular
Posts: 613
Joined: Wed Sep 28, 2005 10:08 am

Post 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?
Ree
Forum Regular
Posts: 592
Joined: Fri Jun 10, 2005 1:43 am
Location: LT

Post 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.
foobar
Forum Regular
Posts: 613
Joined: Wed Sep 28, 2005 10:08 am

Post 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!
Ree
Forum Regular
Posts: 592
Joined: Fri Jun 10, 2005 1:43 am
Location: LT

Post by Ree »

ok, no mistakes, good :)
Post Reply