for instance Acc No,Acc Type,Exp Date,Cvv Num...etc
My requirement is User should fill the Details in My Checkout Page ,if he clicks submit button this details will bind there ,if he dont have account ,automatically will create,if he have skips the creation page and process next step??
As we know that fo integrating paypal we needed to pass the value in hidden field . which have a fixed name. please check the link for the list of hidden field name
thulasiram12...
Member
393 Points
200 Posts
Integration with PayPal in C#
Feb 06, 2012 08:41 AM|LINK
Hi Friends ....please any one suggest me how to integrate Paypal account with my application...
i'm new to .net,googled out from last 3 to 4 days but i'm unable to understand the process..
please any one suggest me the flow how to do that??
in page have this fields:
TotalAmount,CreditCard Type,CreditCardNum,ExpirationDate,CVV Num,FirstName,LastName,Address,City,State,Country,ZipCode
cninjas
Contributor
4868 Points
851 Posts
Re: Integration with PayPal in C#
Feb 06, 2012 08:46 AM|LINK
hi
You need to have the SDK from paypal to do this..
You can try the below link...hope it helps...
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/library_download_sdks
thanks,
Niranjan
etell0
Member
240 Points
76 Posts
Re: Integration with PayPal in C#
Feb 06, 2012 08:49 AM|LINK
//string path = ConfigurationManager.AppSettings["BaseURL"].ToString() ;
//string businessPaypalId = "bill_1324043702_biz@sdsol.com";
//string redirect = "";
//redirect += "https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_xclick&business=" + businessPaypalId;
//redirect += "&item_name=" + BuyDetail[0].ToString();
//redirect += "&amount=" + String.Format("{0:0.00} ", BuyDetail[3].ToString());
//redirect += "&item_number=1";
//redirect += "¤cy_code=USD";
//redirect += "&return="+path+"/BuyPayPal.aspx";
//redirect += "&cancel_return=" + path + "/BuyPayPal.aspx";
//redirect += "¬ify_url=" + path + "/BuyPayPal.aspx";
//redirect += "&custom=" + Did.ToString();
//Response.Redirect(redirect);
after getting response you need to get the querystring if success then ok
otherwise failure.
thulasiram12...
Member
393 Points
200 Posts
Re: Integration with PayPal in C#
Feb 06, 2012 08:54 AM|LINK
Hi etell...thanks for ur response....
In my Page have CreditCardType,CNumber,Cvv Details of Customer,how to pass this details to paypal account and deduct money from them account??
thulasiram12...
Member
393 Points
200 Posts
Re: Integration with PayPal in C#
Feb 06, 2012 09:42 AM|LINK
Hi friends...with the above Mentioned Code...i'm logging into the Developer account...
After that what to do here??
i'm in dilemma???
Plz any one help me
thulasiram12...
Member
393 Points
200 Posts
Re: Integration with PayPal in C#
Feb 07, 2012 03:51 AM|LINK
Hi frnds..any one help me ...:)
cninjas
Contributor
4868 Points
851 Posts
Re: Integration with PayPal in C#
Feb 07, 2012 04:05 AM|LINK
Hi
I this link there is a download sample for ASP.NET
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/library_download_sdks
Download that and check how it is used...you can try the sameway and make it work...
Search for this term "Website Payments Standard"
thanks,
Niranjan
thulasiram12...
Member
393 Points
200 Posts
Re: Integration with PayPal in C#
Feb 07, 2012 05:38 AM|LINK
Hi cninjas...
I refered ur link also but no use....
Plz help me any one ,In my .aspx page have the Account Details.i want to bind this details to paypal account...??
Give me Suggestions
thulasiram12...
Member
393 Points
200 Posts
Re: Integration with PayPal in C#
Feb 13, 2012 10:11 AM|LINK
Hi... Every one
Can we Bind Customer Details to Paypal Account..
for instance Acc No,Acc Type,Exp Date,Cvv Num...etc
My requirement is User should fill the Details in My Checkout Page ,if he clicks submit button this details will bind there ,if he dont have account ,automatically will create,if he have skips the creation page and process next step??
Help me any one
vinay13mar
Star
7756 Points
1626 Posts
Re: Integration with PayPal in C#
Feb 13, 2012 10:26 AM|LINK
As we know that fo integrating paypal we needed to pass the value in hidden field . which have a fixed name. please check the link for the list of hidden field name
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_Appx_websitestandard_htmlvariables
C
heck the link For how to integrate the paypal
http://www.codeproject.com/Articles/19184/Use-of-the-PayPal-payment-system-in-ASP-NET
http://www.codeproject.com/Articles/42894/Introduction-to-PayPal-for-C-ASP-NET-developers
V.K.Singh