Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Community Forums
 Code Support: ASP (Non-Forum Related)
 Check Box
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

kolucoms6
Average Member

845 Posts

Posted - 20 October 2007 :  03:02:13  Show Profile
I have a form validation code :

count = 0;
for(x=0; x<form.SubCampaign.length; x++){

if(form.SubCampaign[x].checked==true){
count++
}
}

if(count<1){
alert("You must choose atleast one campaign for which you made sale !!!");
return false;
}


I have ONE check box..and on submit of a form, if that check box is Not chekdd then it shld give me "You must choose atleast one campaign for which you made sale !!!" alert.

But problem is even if I check it, I get that message.

But If I have 2 check boxes, it doesnt popup or alert "You must choose atleast one campaign for which you made sale !!!" , whcih is OK and GOOD enough .

Edited by - kolucoms6 on 20 October 2007 13:13:47

gary b
Junior Member

USA
267 Posts

Posted - 21 October 2007 :  22:10:34  Show Profile  Visit gary b's Homepage
quote:
form validation code :

count = 0;
for(x=0; x<form.SubCampaign.length; x++){

if(form.SubCampaign[x].checked==true){
count++
}
}

if(count<1){
alert("You must choose atleast one campaign for which you made sale !!!");
return false;
}


Looks like C++... Out of my element. But you can validate the logic to see where code is failing. Start backwards... substitute (1=1) for (count<1). Does code work??

If yes, substitute (1=1) for (form.SubCampaign[x].checked==true)... Does it work?? Apply this method to discover where code is failing.

And should you have semi-colons at additional places??

Just some thoughts...
Go to Top of Page

kolucoms6
Average Member

845 Posts

Posted - 23 October 2007 :  03:12:37  Show Profile
Let me try these...
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.19 seconds. Powered By: Snitz Forums 2000 Version 3.4.07