Hello
There is no an HTML page which is displayed to members when the payment is processed successfully. PHP script generates a common page with text. You may find it in default Dolphin's Payment module modules/boonex/payment/classes/BxPmtModule.php file -> _onResultPage function.
You need to add your code to $_page_cont[$_page['name_index']]['page_main_code'] but be careful it should be a correctly written PHP code. If your affiliate code is JavaScript based then you should have something like this
ob_start();
?>
Your Java Script is here.
<?
$sAffiliateCode = ob_get_clean();
$_page_cont[$_page['name_index']]['page_main_code'] = MsgBox($aResult['message']) . $sAffiliateCode;