Hi,
Any limits exists while passing values of checkbox to another program?
Here is the code:
The number of ids i am passing is 1243.
can checkbox pass these many values?
I am getting an error like invalid url!!!
But is is working for 100 ids and all!!!
Any solution?
with regards
Archana
Any limits exists while passing values of checkbox to another program?
Here is the code:
Code:
<script type="text/javascript"> function valuate() { var txt='' var promoter=document.getElementsByName('pmid') for (var i_tem = 0; i_tem < promoter.length; i_tem++) if (promoter[i_tem].checked) txt+=' '+promoter[i_tem].value txt=txt.replace(/^ /, '') document.forms['form1']['promoter'].value=txt } </script> <form method="post" name="form1" action="/cgi-bin/getabstracts.cgi"> <input name="promoter" type="hidden">
can checkbox pass these many values?
I am getting an error like invalid url!!!
But is is working for 100 ids and all!!!
Any solution?
with regards
Archana
Comment