Form auto sumission (ASP.NET)

M

maflatoun

Hi guys,

I have the following

<form name="formpurchase" id="formpurchase"
method=postaction="https://site.cgi">
<input type=hidden name="MerchantNumber" value="<%=MerchantNumber
%>">
<input type=hidden name="ReturnURL" value="<%=retURL %>">
<input type=hidden name="Products" value="<%=Products %>">

<input type=submit value="Continue" name="submit">
</form>

How do I make it so that submission is done automatically? (without
pressing the button)

I've added this but it says 'object doesn't support this property'
<script language="javascript">
<!--
if(document.all){
frm=document.all.formpurchase
}
if(document.getElementById){
frm=document.getElementById("formpurchase")
}
if (frm) frm.submit();
-->
</script>


Thanks
MA
 
L

Lee

(e-mail address removed) said:
Hi guys,

I have the following

<form name="formpurchase" id="formpurchase"
method=postaction="https://site.cgi">
<input type=hidden name="MerchantNumber" value="<%=MerchantNumber
%>">
<input type=hidden name="ReturnURL" value="<%=retURL %>">
<input type=hidden name="Products" value="<%=Products %>">

<input type=submit value="Continue" name="submit">
</form>

How do I make it so that submission is done automatically? (without
pressing the button)

I've added this but it says 'object doesn't support this property'
<script language="javascript">
<!--
if(document.all){
frm=document.all.formpurchase
}
if(document.getElementById){
frm=document.getElementById("formpurchase")
}
if (frm) frm.submit();
-->
</script>

Since you named a form element "submit", the form no longer
has a method named "submit". Change the name of the element.

Also, your code is bloated. All you need is:

<script type="text/javascript">
document.forms["formpurchase"].submit();
</script.


--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,576
Members
45,054
Latest member
LucyCarper

Latest Threads

Top