I was using an AJAX tab control and wanted to validate the tab page before the switching away to another tab. It turns out there is a really easy way to do that – call Page_ClientValidate(“ValidationgGroupName”) from a javascript. If it returned true then the page/group is valid and I can allow the tab selection otherwise, I cancel the tab selection event. The code looks like this:

function TabSelecting (sender, eventArgs)

{


if (Page_ClientValidate(“CreateAccount”) == false)

{


return
false;

}

}

This entry was posted on Saturday, February 10th, 2007 at 8:20 pm and is filed under Uncategorized. You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.