ValidatorCalloutExtender does not kick flyout after first submit click
If you have multiple validation control and using ValidatorCalloutExtender,You might have exprience that it does not kick fly out all the time after your first submit click. Well, this sounds like bug and does not have straight fix on it.
Solution:
The funny part is you can solve this problem by simple by using "SetFocusOnError=True" on your respective RequiredFieldValidator. This is little bit tricky but it does solve your problem.
Here is few reference link
http://forums.asp.net/t/1131274.aspx
ASP.NET AJAX Validators
http://blogs.msdn.com/mattgi/archive/2007/01/23/asp-net-ajax-validators.aspx
ValidatorCallout Demonstration
http://www.asp.net/AJAX/AjaxControlToolkit/Samples/ValidatorCallout/ValidatorCallout.aspx
ValidatorCallout BUG
http://www.codeplex.com/AtlasControlToolkit/WorkItem/View.aspx?WorkItemId=10900
Good luck and happy coding.