WorkerBeeJ
Programmer
I have a user control that has on it a save button, which calls a save method. I'm using this same user control in a wizard, where upon advancing past that specific step with my user control, the wizard calls the same save method that I'm calling on the button click, but without the click since the save button is hidden for the wizard. My issue is with page validation. I'm able to set the CausesValidation property on the button so that I can call my custom validation methods, however, since the button is hidden when I'm using that control in the wizard, I'm not sure how to trigger the validation. So my question is, is it possible to call:
protected void Validate_Stuff(object sender, ServerValidateEventArgs e)
without the click?
Thanks,
J
protected void Validate_Stuff(object sender, ServerValidateEventArgs e)
without the click?
Thanks,
J