Form Action

J

JaFunk04

Is there a way I can do a form action without having the user click the submit button?
 
M

Mr B

You have to have some sort of Action to kick off the submission of the form. What would you want to
key it off if not clicking a button?
 
R

Rick Budde

What do you mean by your term "form action"? What user
event did you have in mind to trigger this form action?

The user must do something to trigger the web bot (the
code on the server which runs when the submit button is
clicked) to do its thing.
 
J

JaFunk04

See, heres my issue. I have taken information from a cookie and put it into hidden forms. I used the hidden forms as criteria for some database results. The only way I could figure out how to do that is to make the database do a search with those two hidden form values, but the user still has to click the button to activate the webbot or whatever. I dont want them to click the button, i just want it to be there when the page open. Get it?

p.s.(How do you make the page go to a different page in Java? document.open("www.whatever.com") ?? )
 
Top