amensi:
Okay, I checked that out and I am bit confused on this.
ccJoin.ValidateCaptcha(txtCap.Text);
if (!ccJoin.UserValidated)
{
//Inform user that his input was wrong ...
return;
}
Usually, where (which method) should I put this code in? Let's say I put in the submitButton_Click method, by using the word "reutrn;" this will stop any further execution of the code in that button_click method, correct?