Skip to content Skip to sidebar Skip to footer

What's The Problem With This Code?

Where to modify this code IT STILL GIVES A MSGBOX IF I SELECT THE CHECKBOX BOX OR NOT .... My code below will redirect to Google in both conditions: If the user selects the checkbo

Solution 1:

I think you need a return in your function call. Also ensure your function ConfirmSelection has explicit return value in both parts of the if statements

OnClientClick ="return ConfirmSelection(this.form);"

Post a Comment for "What's The Problem With This Code?"