Q. Why does none of my code execute after Transaction.Commit()?
ProntoOpenNet FAQs Friday, October 24 2008A. If you are using the Signer.Link = Url then it is probably Response.Redirect-ing on the Transaction.Commit() call before it ever hits your code after the Transaction.Commit() call. You'd need to set Transaction.AutoRedirect = False, let your code run and then Response.Redirect(Transaction.Document(0).Signer(0).Signature(0).Url) once you are done with your additional code.