I have hidden fields..
I am trying to access the hidden field values in classic ASP , but not able to access...Could you please help me out with this..I am kinda stuck here trying to access the values....
Code:
<input type="hidden" id="totalrecords" name="totalrecords" value="1"> <input type="hidden" id="totalrecords" name="totalrecords" value="2"> <input type="hidden" id="totalrecords" name="totalrecords" value="3"> <input type="hidden" id="totalrecords" name="totalrecords" value="4"> <input type="hidden" id="totalrecords" name="totalrecords" value="5"> <% 'trying to access it here totalParts=totalrecords(0).value %>*
Comment