Click here to Skip to main content
15,914,111 members
Home / Discussions / C#
   

C#

 
AnswerRe: Date Format Pin
PIEBALDconsult23-Dec-10 4:42
mvePIEBALDconsult23-Dec-10 4:42 
QuestionSmall confusion in Nullable Type Pin
Ravi Sant23-Dec-10 0:54
Ravi Sant23-Dec-10 0:54 
AnswerRe: Small confusion in Nullable Type PinPopular
harold aptroot23-Dec-10 1:01
harold aptroot23-Dec-10 1:01 
GeneralRe: Small confusion in Nullable Type Pin
Pete O'Hanlon23-Dec-10 2:40
mvePete O'Hanlon23-Dec-10 2:40 
GeneralRe: Small confusion in Nullable Type Pin
Ravi Sant23-Dec-10 4:30
Ravi Sant23-Dec-10 4:30 
AnswerRe: Small confusion in Nullable Type Pin
TweakBird23-Dec-10 1:02
TweakBird23-Dec-10 1:02 
AnswerRe: Small confusion in Nullable Type Pin
Hiren solanki23-Dec-10 1:18
Hiren solanki23-Dec-10 1:18 
AnswerRe: Small confusion in Nullable Type Pin
Laxman Auti24-Dec-10 20:39
Laxman Auti24-Dec-10 20:39 
QuestionWhat is the code for Credit card no. validation in C#? Pin
Cnu5555522-Dec-10 22:27
Cnu5555522-Dec-10 22:27 
AnswerRe: What is the code for Credit card no. validation in C#? PinPopular
ScottM122-Dec-10 22:31
ScottM122-Dec-10 22:31 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
Pete O'Hanlon22-Dec-10 22:48
mvePete O'Hanlon22-Dec-10 22:48 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
OriginalGriff22-Dec-10 22:51
mveOriginalGriff22-Dec-10 22:51 
AnswerRe: What is the code for Credit card no. validation in C#? Pin
OriginalGriff22-Dec-10 22:50
mveOriginalGriff22-Dec-10 22:50 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
ScottM122-Dec-10 23:02
ScottM122-Dec-10 23:02 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
OriginalGriff22-Dec-10 23:05
mveOriginalGriff22-Dec-10 23:05 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
Pete O'Hanlon22-Dec-10 23:22
mvePete O'Hanlon22-Dec-10 23:22 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
OriginalGriff22-Dec-10 23:57
mveOriginalGriff22-Dec-10 23:57 
AnswerMy Vote of 1 Pin
Keith Barrow23-Dec-10 1:05
professionalKeith Barrow23-Dec-10 1:05 
GeneralRe: My Vote of 1 Pin
Pete O'Hanlon23-Dec-10 1:12
mvePete O'Hanlon23-Dec-10 1:12 
GeneralRe: My Vote of 1 Pin
Keith Barrow23-Dec-10 1:34
professionalKeith Barrow23-Dec-10 1:34 
GeneralRe: My Vote of 1 Pin
Pete O'Hanlon23-Dec-10 1:50
mvePete O'Hanlon23-Dec-10 1:50 
AnswerRe: What is the code for Credit card no. validation in C#? Pin
PIEBALDconsult23-Dec-10 4:45
mvePIEBALDconsult23-Dec-10 4:45 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
Cnu5555529-Dec-10 17:55
Cnu5555529-Dec-10 17:55 
AnswerRe: What is the code for Credit card no. validation in C#? Pin
jschell23-Dec-10 7:05
jschell23-Dec-10 7:05 
Depends on what you mean by validate.

One of the other posts provide a link to do a simple check sum on the digits itself. This is a simple test that can be done in a GUI.

A number that passes that test still might not be a valid number in that numbers have certain rules related to the card type (such as Visa.) There are simple methods that one can use to validate those however the only correct way requires that one get the bin numbers from a valid processor and check them.

Of course a number is only valid if a processor accepts it. Doing that requires a lot of code and will be specific to each processor. Both of those make it pointless for anyone to post such solutions here.

And none of that has anything at all to do with securing ecommerce payment applications.
GeneralRe: What is the code for Credit card no. validation in C#? Pin
Cnu5555529-Dec-10 17:49
Cnu5555529-Dec-10 17:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.