ASP Buttons event not firing
-
Hey all, I have got a problem with my buttons on my website, the buttons not always causing a postback, sometimes it works and sometime it does not, the buttons CausesValidation are set to false. I am not getting any javascript or server side errors. Any Idea that will cause this issue?
-
Hey all, I have got a problem with my buttons on my website, the buttons not always causing a postback, sometimes it works and sometime it does not, the buttons CausesValidation are set to false. I am not getting any javascript or server side errors. Any Idea that will cause this issue?
If you have CausesValidation set to True and you are not getting a postback, then it's possible that your validation controls are firing and not being displayed. If you have validation controls set up make sure they are displayed properly to a ValidationSummary control. You could also set your CausesValidation property to False to by pass the validation and make sure it's hitting the server.
-
If you have CausesValidation set to True and you are not getting a postback, then it's possible that your validation controls are firing and not being displayed. If you have validation controls set up make sure they are displayed properly to a ValidationSummary control. You could also set your CausesValidation property to False to by pass the validation and make sure it's hitting the server.
-
hey, sorry, I meant to say my CauseValidation is set to false, I have take a look and there is no validation on that page.
Posting your code would help. Have you walked through it to make sure the code is following the proper path?
-
Posting your code would help. Have you walked through it to make sure the code is following the proper path?