Submit form without button

  • Thread starter Thread starter Paul M
  • Start date Start date
P

Paul M

Hi
I have some asp script which I would like to do something like

If condition is met move on down the page
submit the form which is there

I am stuck on the automatic submition of the form. Is there a way to submit
the form without the use of a button

Thanks
Paul M
 
You can't submit the form w/o user interaction from server side code
- all you can do is redirect to the next page using Response.Redirect
(and pass your form values as either parameters or Session variables)

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| Hi
| I have some asp script which I would like to do something like
|
| If condition is met move on down the page
| submit the form which is there
|
| I am stuck on the automatic submition of the form. Is there a way to submit
| the form without the use of a button
|
| Thanks
| Paul M
|
|
|
 
Back
Top