Is there a best practice on how to setup Business Transactions for ASP.Net WebForms? We have many webforms applications where there is a single page (e.g., CreateBill.aspx) that has many event handlers (e.g., DeleteBill, SaveBill, AddLine, etc). There is no difference in the URL when calling these different event handlers.
I had added a POCO entry point for a specific event handler method, but it did not work until I disabled the ASP.Net Business Transaction Entry Point. Prior to disabling the BT I would see the snapshots catching under the CreateBill.aspx BT, not my custom DeleteBill PCOC entry point.