Link to home
Start Free TrialLog in
Avatar of red5
red5

asked on

non-working form from www.aerotech-rocktry.com

I have ie5.5 running on win2k

I am attempting to buy something from

http://www.aerotech-rocketry.com/store/motors/RMS29mm.html

The page seems to be a simple form (of which I am *not* an expert).  However, when I try to press the "add to cart" or "proceed to checkout buttons, nothing happens, whether I have checked the checkboxes or not.

any help would be appreciated.
ASKER CERTIFIED SOLUTION
Avatar of dij8
dij8
Flag of New Zealand image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
i agree with the previous comment. that is a dead page, the forms does nothing. better find another cart...
i agree with the previous comment. that is a dead page, the forms does nothing. better find another cart...
red5,

dij8 is right on it. If <form> tag is not include, you can't submit anything from that page. Some add-on with a simple example that shows below.

Sample of <form> tag is:-

<form action="process.cfm" method="POST">
 
 all your html codes, your checkbox, button ... and so on

</form>

above, the ACTION attribute means, where you should submit this page to, in this case, submit to process.cfm (cold fusion scripting, you can use process.cgi .. depends what scripting lang u r using), METHOD attribute is "post", means you are posting the current data in the form to the action attribute (process.cfm)!

Are you new to developer web applications ? What scripting are you heading to ? Perhaps we all can give some reference urls over here.

Good Luck.

sshhz
Any comments red5?  If you are just trying to buy from here give up, it ain't gonna happen.  If you are involved in the development of the site then the images need to be surrounded by <form> tags with an action set.
Avatar of red5
red5

ASKER

Thank you all for your comments.  I have traded a few emails with the webmaster of that site and given him the question number to get here.  He says the site works for him, but I'm hoping he modifies the page to match what you're saying here.  I'll wait a day to see what he does; either way, I'll accept a comment shortly.
If he's got no form tags surrounding his form elements, the form CANNOT 'work for him' -- it can't do anything, because there's nothing telling it what to do.

I wonder if he's looking at it on a local machine that has different code... he didn't happen to do this in FrontPage, did he? (I didn't look at the code so I don't know)
Avatar of red5

ASKER

according to the meta tags, he used "Adobe GoLive 4".

he did email me and agreed to change it.  Thanks for your help.
Glad to help.  Thanks for the A.