To use Winductor in credit card processing via Verisign Payment Services follow these steps:
if SignioCharge() then
CgiSendTemplate( "C:\Success.html" );
else
CgiSendTemplate( "C:\Failure.html" );
endif;
For simple purchase-and-download scenarios,
typically you should use CgiSendFile or CgiSendTemplate,
instead of CgiRedirect. This allows you to keep your
payload ("Success.html" or equivalent) files outside your
user-visible website, so it can only be accessed
after a successful credit card transaction and not
by just typing in the right URL.