home page latest news web development curriculum vitae scripts contact me


  • Curriculum Vitae (CV)
  • Major web solutions
  • Web design projects
  • Software solutions


  • C# (Microsoft .NET)
  • JAVA
  • Dynamic HTML
  • PHP & MySQL
  • ASP.NET - C# & VB.NET
  • Perl & CGI
  • C | C++
  • Vector Markup Language
  • SMIL
  • Assembler
  • Databases
  • Wap Development
  • Web site promotion
  • Web Marketing


  • Blog System

  • Real Estate Portal

  • JobSite Professional

  • Car Portal

  • PHP Mall

  • Jobs Portal









Credit card validation solution created by Anton Zamov in '2003

The CreditCardValidator is a Windows library which allows to check credit card numbers for validity and give additional information for the credit card type and others.
Currently CreditCardValidator has 4 main methods (to set and get the credit card number, to get the credit card type (VISA, MASTERCARD etc), to check if the number is valid, and to get the error message). The Zamov CreditCardValidator can be very easy integrated in ASP.NET e-commerce solutions or more complex C# applications.


Example of use of CreditCardValidator v1.0:

CreditCard.Validator creditCardValidator=new CreditCard.Validator();

creditCardValidator.setCreditCardNumber("4002417016240183");

private bool isCreditCardNumberValid=creditCardValidator.isValid();
// isCreditCardNumberValid=True in this example

private string creditCardType= creditCardValidator.getType();
// creditCardType="Visa" in this example

private string errorMessage= creditCardValidator.getError();
// errorMessage=" " in this example


CLICK HERE TO READ INFORMATION FOR VERSION 2.0 OF THIS SOLUTION AND HOW TO DOWNLOAD IT






Copyright © Anton Zamov 1998-2005