Hi Mateo,
I am in the process of doing something similar, and Kentico provided me with the following example. Maybe this will help you.
1) Add the following line to OnContentLoaded() method of the BizForm webpart -
BizFormNew.OnAfterSave += new BizForm.OnAfterSaveEventHandler(BizFormNew_OnAfterSave);
2) Create new method:
void BizFormNew_OnAfterSave()
{
// here you can place your code
}
I am, however, having problems with the OnAfterSave event not being called. I cannot get a breakpoint in CMSWebParts - Bizform.aspx. If you find a solution for your customization, could you please post it and I will do the same as well once I do.
Thanks,
forrester