DaveC426913
Programmer
It's the basics that mess me up. I'm doing client-side field validation. Once done, I want to trigger the codebehind. How?
.aspx:
.aspx.vb:
.aspx:
Code:
<script>
function validateInput(){
if (blah blah isn't valid){
alert("Not valid input!")
}
else{
//good
validateAgainstDB();
}
}
</script>
Code:
public sub validateAgainstDB()
....
End Sub