-----------------------------------------------------------
New Message on BDOTNET
-----------------------------------------------------------
From: SmartThrive
Message 3 in Discussion
Hi Akash For Credit-card processing we are having lot of processors.
PayPal(you can get the open source for this). Payflowpro(for Visa and Master
cards). For this you have to get the COM dll and register in your machine.
for this you have to get the package from payflowpro. this registration and
sample will be given in the same package Here I am attaching a sample code
for Payflowpro
//' create the PNCOMClient component
PFProCOMLib.IPFProCOM client = new PFProCOMLib.PNComClass();
//Set client = Server.CreateObject("PFProCOMControl.PFProCOMControl.1");
string parmList = "",varString ="";
parmList = "TRXTYPE=S&TENDER=C&ZIP=12345&COMMENT1=ASP/COM Test Transaction";
parmList = parmList + "&ACCT=" + cardNum.Value;
parmList = parmList + "&PWD=" + ConfigurationSettings.AppSettings["Password"];
;
parmList = parmList + "&USER=" + ConfigurationSettings.AppSettings["User"];
parmList = parmList + "&VENDOR=" + ConfigurationSettings.AppSettings["Vendor"];
parmList = parmList + "&PARTNER=" +
ConfigurationSettings.AppSettings["Partner"];
parmList = parmList + "&EXPDATE=" + cardExp.Value;
parmList = parmList + "&AMT=" + amount.Value;
int Ctx1 = client.CreateContext("test-payflow.verisign.com", 443, 30, "", 0,
"", "");
string curString = client.SubmitTransaction(Ctx1, parmList, parmList.Length);
client.DestroyContext (Ctx1);
int done = 0;
Label1.Text = "Result"+curString; In CurString .. if you get the string as
AUTHCODE- etc.. your process is successful. You can get the package from
https://manager.verisign.com Have a nice time. Happy Coding.
-----------------------------------------------------------
To stop getting this e-mail, or change how often it arrives, go to your E-mail
Settings.
http://groups.msn.com/BDOTNET/_emailsettings.msnw
Need help? If you've forgotten your password, please go to Passport Member
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help
For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact
If you do not want to receive future e-mail from this MSN group, or if you
received this message by mistake, please click the "Remove" link below. On the
pre-addressed e-mail message that opens, simply click "Send". Your e-mail
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]