or
btnPageSubmit.ValidationGroup = "addressForm"Protected Sub btnPageSubmit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnPageSubmit.Click lblResult.Text = Page.IsValid Validate("addressForm") Validate("userForm") End SubI have a telerik radgrid that is doing an insert using an objectdatasource. The insert method the objectdatasource calls has a boolean return value that I want to check in the radgrid's ItemInserted event.
Is this possible and what is the code to do it. I checked the GridInsertedEventArgs e and there is no way I can see to get the return value but it must be there, I think I am just missing it.
Any help would be appreciated.