Hi,
I have ASP file with checkboxes and a Save button. When I click on save button I am checking whether one of the checkboxes is selected using
var objInput = document.all.tags("input"
for(ix=0;ix<objInput.length;ix++) {
if (objInput(ix).checked) {
bCheckFound = true;
intCount++;
Now I added 2 option buttons( radio buttons ) to the same screen. Is there any way ( other than having them in two different forms ) I can change the above code so that it checks only check boxes .
Thanks
I have ASP file with checkboxes and a Save button. When I click on save button I am checking whether one of the checkboxes is selected using
var objInput = document.all.tags("input"
for(ix=0;ix<objInput.length;ix++) {
if (objInput(ix).checked) {
bCheckFound = true;
intCount++;
Now I added 2 option buttons( radio buttons ) to the same screen. Is there any way ( other than having them in two different forms ) I can change the above code so that it checks only check boxes .
Thanks