I'd like to implement ajax message box that will gather information from validators on a page when client-side validation fires. Like: I have left some text fields blank then press submit button and appropriate RequiredFieldValidators show messages. I would like my message box shows those messages too. I am looking for appropriate way to hook on validators JS event or something.

Thanks!

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

Would something like this fit the bill?

http://wiki.asp.net/page.aspx/308/validationsummary/

link|improve this answer
Yeah, I looked at validatonSummary control. As it gathers validation messages from validaton control I can try to find out how can I hook on this control's JS. – dominique Jan 18 '11 at 21:25
What do you hope to accomplish by adding an event handler? – chprpipr Jan 18 '11 at 21:47
I would like to display those messages in my message box. So all I'd like to do it to be able to retrieve those client-side messages and process them. – dominique Jan 18 '11 at 21:57
feedback

Your Answer

 
or
required, but never shown

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