Here's what I have done, in order to have proper communication, I will explain it in easy to understand steps...
1 - I opened ~\CMSWebParts\BizForms\bizform.ascx
2 - Under Design view found the BizForm Control event onBeforeSave and added it to the codebehind
3 - Final code at the bottom of the codebehind of "~\CMSWebParts\BizForms\bizform.ascx.cs" is...
...
protected void viewBiz_OnBeforeSave()
{
this.StopProcessing = true;
}
When I tested the site, it still seems to save to the BizForms List of entries.
Please assist me in resolving this issue. Thank you