CustomValidator doesn't give error message

C

COHENMARVIN

I have a customValidator that calls a client function.
Here is the client function
<script language="JavaScript">
function ClientValidate(objSource, objArgs)
{
var intnumber = objArgs.Value;
if (intnumber > 5)
{
objArgs.IsValid = False;
return False;
}
Else
{
objArgs.IsValid = True;
return True;
}
}
</script>

Here is the CustomValidator:

<ASP:CustomValidator id="valCustom" runat="server"
ControlToValidate = "MyTextBox"
ClientValidationFunction="ClientValidate"
ErrorMessage="* Value must be less than or equal to 5 "
Display="Dynamic">
*
</asp:CustomValidator>

The problem is that the custom validator puts a red asterix next to the
textbox field even when the number entered into the textbox is valid.
It treats all numbers as wrong. Another problem involves the
ValidationSummary control (see below)

<ASP:ValidationSummary id="valSummary" runat="server"
ShowSummary="True"
ShowMessageBox = "True" DisplayMode="List" HeaderText = "<b>The
following errors were found</b>" />

This should give an error message when the value in "MyTextBox" is
wrong, but it doesn't.
-- CohenMarvin
 
P

Peter Blum

Hi Marvin,

I read your other thread first. I believe your best answer is to use the
CompareValidator, Type=Integer, ValueToCompare=5, Operator=GreaterThan.

But to offer some insight on this problem, here are my thoughts:
1. objArgs.Value contains a string. Let's convert it to an integer first:
var intnumber = parseInt(objArgs.Value);

2. Don't return true or false. The result is always set in objArgs.IsValid
(which you've done). So just remove those return statements.

--- Peter Blum
www.PeterBlum.com
Email: (e-mail address removed)
Creator of "Professional Validation And More" at
http://www.peterblum.com/vam/home.aspx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top