Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a cutomvalidator, textbox.text = 1 and a subroutine:

1.
asp:TextBox id="tbxNumber" runat="server" MaxLength="100

2.
asp:CustomValidator id="vNumeric" runat="server" ControlToValidate="tbxNumber" Display="None" OnServerValidate="ValidateNumbers2"

3.
Sub ValidateNumbers2(ByVal source As Object, ByVal args As System.Web.UI.WebControls.ServerValidateEventArgs)

If Not IsNumeric(args.Value) Then  

  args.IsValid = False

Else

   args.IsValid = True

End If


End Sub

When I try to debug vNumeric.Validate, sub ValidateNumbers2 won't fire? Why?

Ideas? I'm wasting my too much time on this little problem. I only have to use customvalidator for some reasons.

share|improve this question
When have you try to dubug that, after you click save button, or you call method in the code by calling vNumeric.Validate() ? – Sarawut Positwinyu May 30 '11 at 9:51
after the click button event, ValidateNumbers2 won't fire, like nothing happens – someonewhowillnotbemiss May 30 '11 at 9:56
You have already set CauseValidation to true on that button and put breakpoint at the begining of ValidateNumbers2, right ? – Sarawut Positwinyu May 30 '11 at 10:02
I've already tried, but then nothing happened, I'll try again. – someonewhowillnotbemiss May 30 '11 at 10:06
CauseValidation="True" on Button or Textbox didn't also help. – someonewhowillnotbemiss May 30 '11 at 10:12

2 Answers

if the textbox is empty while you're testing, it will not fire. you need to set

 ValidateEmptyText="True"

in your customvalidator.

share|improve this answer
Custom validator is not firing even the textbox IS NOT EMPTY – someonewhowillnotbemiss May 30 '11 at 10:04
Are you working with updatepanels? And you're not working with ValidationGroups? – ibram May 30 '11 at 10:08
Working with updatePanels, but not working with ValidationGroups – someonewhowillnotbemiss May 30 '11 at 10:26
I had sometimes problems with updatepanels. you can try to test it without the updatepanel. – ibram May 30 '11 at 10:35

Have you changed ClientId mode of it, Validators might not supports client Id mode static

Validators and ClientIDMode issue (ASP.NET)

////////////////////

You may try using Force Validation by Page.Validate();

share|improve this answer
No, haven't changed it. – someonewhowillnotbemiss May 30 '11 at 10:25
if i were you, i will try creating a blank test page and add very simple textbox and server validation. if it work, there might be somethink wrong with object setting (i once work with custom validatior in FormView and it not work, i use lable instead as in this topic stackoverflow.com/questions/5880359/… . if it is still not work, your code might be wrong or it might be some global setting. – Sarawut Positwinyu May 30 '11 at 10:36
If you are hurry/tired and don't want to waste your time, just use if-else condition and label instead. using javascipt to hide that lable when you change value in textbox. This may imitate the apprearance of validators, though it is not the best way. – Sarawut Positwinyu May 30 '11 at 10:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.