-----------------------------------------------------------

New Message on BDOTNET

-----------------------------------------------------------
From: LovedJohnySmith
Message 2 in Discussion

Akash:          Actually processing cards is a whole different ball game :) 
There are so 
many options to choose, you can either go with something like Worldpay or 
PayPal which allows you to use a regular bank account and bill people. 
Alternatively you'll need to look into setting up a merchant account with 
your bank and using a processing gateway.  
I belive that Verisign offer PayFlowPRO component to validate credit cards 
and that component requires an environment variable to find it's certificate.  
so you've to set the system variable up (right-click My Computer, Advanced, 
Environment Variables, etc.) and verified (using the "set" command) that it 
exists, but if you dump the environment variables using the following code not 
all of the system variables show up.    Here's the code you are going to use to 
dump the environment variables:  <script language="C#" runat="server"> 
void Page_Load(Object s, EventArgs e) { 
Response.Write(Environment.MachineName + "<p>"); 
IDictionaryEnumerator iter = 
Environment.GetEnvironmentVariables().GetEnumerator(); 
while ( iter.MoveNext() ) { 
Response.Write (iter.Key + ": " + iter.Value + 
"<br>");  } 
    } 
</script>      One of the MVP(Paul) done this already and have written an 
article on CodeProject 
outlining how it's done:  
http://www.codeproject.com/aspnet/CreditCardValidator.asp  The formula that 
checks cards is known as Luhn's formula, however, the 
article covers everything and provides all the code to produce an ASP.NET 
validation control. 
   Thanx, Smith  

-----------------------------------------------------------

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]

Reply via email to