Credit Card Exp. Date: Get Month and Year

Last post 06-30-2009 2:51 PM by 2177. 4 replies.

Sort Posts:

  • Credit Card Exp. Date: Get Month and Year

    06-30-2009, 1:13 PM
    • Member
      31 point Member
    • 2177
    • Member since 04-16-2009, 4:23 PM
    • USA
    • Posts 116

    Hi all-
    In my asp.net web page, I've a date (which is string) that is mm/yy format. It is credit card expiration date. Now I need to get that string and convert it into date format to get month(like 10) and year (like 2009) at client side using jquery (javascript will do too).

    Any ideas ?

    Thanks & Regards,
    Sachin
  • Re: Credit Card Exp. Date: Get Month and Year

    06-30-2009, 2:19 PM
    • Contributor
      5,624 point Contributor
    • RatheeshC
    • Member since 04-25-2008, 6:05 PM
    • Posts 1,198

    Hi,

    For date function in Javascript you need date,month and year ..  Like this

    var dt = document.getElementById('<%= lblDate.ClientID%>').value;

    var t = Date.parse(dt);
    alert(dt);

    Thanks

    Thanks
    Ratheesh

    Please mark it as answer if it resolves your issue.
  • Re: Credit Card Exp. Date: Get Month and Year

    06-30-2009, 2:30 PM
    • Member
      31 point Member
    • 2177
    • Member since 04-16-2009, 4:23 PM
    • USA
    • Posts 116

    Yes, but I have only month and year to supply to Date function in javascript.

    Thanks & Regards,
    Sachin
  • Re: Credit Card Exp. Date: Get Month and Year

    06-30-2009, 2:40 PM
    Answer
    • Contributor
      5,624 point Contributor
    • RatheeshC
    • Member since 04-25-2008, 6:05 PM
    • Posts 1,198

    Hi,

    Try to add the date as 1 and generate the whole date ..it will not give error

    Thanks

    Thanks
    Ratheesh

    Please mark it as answer if it resolves your issue.
  • Re: Credit Card Exp. Date: Get Month and Year

    06-30-2009, 2:51 PM
    • Member
      31 point Member
    • 2177
    • Member since 04-16-2009, 4:23 PM
    • USA
    • Posts 116

    got it ...thanks

    Thanks & Regards,
    Sachin
Page 1 of 1 (5 items)