Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to use ccavenue payment gateway in asp.net

I have to implement ccavenue payment gateway in asp.net.

I have searched lot on the internet but not able to find single working example with asp.net.

I have tried example from site also but it is not documented and not proper . I have no idea about how to use this service with asp.net .

like image 262
p.k Avatar asked Feb 13 '14 11:02

p.k


People also ask

How do I use CCAvenue payment gateway?

Steps to integrate CCAvenue Payment GatewayCreate Merchant Account. Login to Merchant Dashboard and download CCAvenue payment integration kit. get Security keys (Merchant id, Access Code, Working key). Configure CCAvenue security keys and (test/live) endpoint in your PHP application.

How do you pay through CC Avenue?

The customer visits your online store, adds a product or service to the shopping cart and clicks the Checkout button. The CCAvenue payment page opens. However, instead of the 4 Payment options, your customer will see 5 options - Credit Card, Debit Card, Net Banking, Mobile Payment and Cash Card.


1 Answers

  1. Add all dll from the Library folder which is sent by CCAvenue to your Gac
  2. From Avenue Integration kit you will get three pages - Data.aspx, SubmitData.aspx and ResponseHandler.aspx
  3. On your button you have to pass your OrderID, MerchantID (given by CCAvenue), Amount and Redirect URL (your website url so ASA Payment will complete user redirect to your site) to Data.aspx page.
  4. Initialize your TextBox of Data.aspx as per the value which you will get after click of checkout button as i shown above in 3rd picture.
  5. In SubmitData.aspx.cs page, initialize your working key on workingkey variable ( you will get your working key after login into your CCAvenue account).

After following this step you can integrate Avenue gateway to your button

For details refer this -

http://bhartiwebworld.blogspot.in/2013/09/how-to-do-ccavenue-payment-gateway.html

You can also integrate using magento. For magento check this video -

https://www.youtube.com/watch?v=4e1SiQM-sHA

like image 126
Systematix Infotech Avatar answered Sep 24 '22 03:09

Systematix Infotech