Friday, May 18, 2012
Skip Navigation Links
Home
What We Do?
ProductsExpand Products
Mobile ProductsExpand Mobile Products
Web Log
 CC Processor Credit Card Processing
"CC Processor" is a credit card processing component developed in C# (can be easily utilized within vb.NET as well), provides real-time credit card processing through AuthorizeNet gateway. "CC Processor" can be integrated with any online store or even a simple payment form. "CC Processor" also offers real-time eCheck processing through AuthorizeNET gateway. Wells Fargo real-time credit card and eCheck support through AuthorizeNET are provided as well.

You can access methods and properties of "CC Processor" any where in your application using similar code to sample code provided below. For details see "CC Processor" documentation.

Code Sample: authorize_gateway.connect cc = new authorize_gateway.connect();
cc.Log_in = "";   //maximum 20
cc.Transaction_key= ""; //maximum 16
cc.Type ="AUTH_CAPTURE";
cc.Method = "CC";
cc.Amount =""; //maximum 15
cc.Cc_num ="";
cc.Ex_date = ""; format: 05/2005 //maximum 12
cc.Test = ""; //"TRUE or FALSE

cc.process_credit_card();

if (cc.Success_code =="1")
{
   //You may save Approval code with Transaction ID for your record
    along with credit card holder other info. into the database.
    string approval_code = cc.Approval_code;
    string transaction_id = cc.Transaction_id;
    //redirect user to Thank You page.
}
else
{
    // cc.Decline_reason explains reason for decline.
    string decline_reason = cc.Decline_reason ;
}



Note: Third party "SWREG" a service from Digital River handles our secure Credit card transactions.
© 1996- 2008 AGD Studio Inc.