Ask a Question related to ASP, Design and Development.
-
Fox #1
Submitting a form without clicking submit
Hi,
Can someone tell me how to submit a form
from within a scripted page without anyone
having to manually click submit ?
Is this something that XML is needed for ?
If so, I still need to know how to do it (G)
Any help would be greatly appreciated.
Thanks,
Fox
Fox Guest
-
Send form data via email (pdf) by clicking SUBMIT button
am trying to create a form that can be sent to an end-user who will process the information on the form. To do this...I have created a button... -
Submitting form
Can i know whether any1 know hw to submit our form after validating to another form where we can get the input from the first page for .mxml?? And... -
Double clicking submit button - duplicates
Hi there, I have a DW insert record behaviour on a php page. If the user clicks Submit quickly multiple times, I end up with duplicate records. Any... -
Use PDf fill in form in Website and submitting form info.
I feel like I'm 99% there, but I am missing something. I created the PDF form offline and tested submitting it. It works fine. When I upload and... -
Submitting Form Var Problem
I have two dropdown list: frm_cbo_top frm_cbo_bottom I have an OnChange="submit_form();" in each of these dropdown lists - the javascript... -
Evertjan. #2
Re: Submitting a form without clicking submit
Fox wrote on 10 sep 2003 in microsoft.public.inetserver.asp.general:
This is definitly not a serverside asp question> Can someone tell me how to submit a form
> from within a scripted page without anyone
> having to manually click submit ?
>
> Is this something that XML is needed for ?
> If so, I still need to know how to do it (G)
>
> Any help would be greatly appreciated.
>
Please see and follow up on a clientside NG.
{btw: easily done with javascript: document,forms,myfor.submit()}
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Evertjan. Guest
-
Randy Rahbar #3
Re: Submitting a form without clicking submit
> Can someone tell me how to submit a form
XML? I dont think so... you can try something like this with javascript...> from within a scripted page without anyone
> having to manually click submit ?
>
> Is this something that XML is needed for ?
> If so, I still need to know how to do it (G)
<script>
function sendit() {
formname.submit();
}
</script>
<body onload="sendit();">
Randy Rahbar Guest
-
Unregistered #4
Re: Submitting a form without clicking submit
Randy. Elegant. Works perfecitly. Thanks.
Unregistered Guest



Reply With Quote

