Results 1 to 3 of 3

Thread: Italian date format

  1. #1
    Piero Guest

    Italian date format

    I am using asp-db on a ISP located in the US but I need to input the date in italian format (dd/mm/yyyy).
    Using dbMagicCell=",,format=[dd/mm/yyyy]" works well for the grid but not for add and update.

    Do you have any solutions?

  2. #2
    Mark Guest

    Italian date format (reply)

    Piero,

    You may need to set the dateformat in dbOptions. See DOC file at:

    http://www.aspdb.com/docs/aspdbman.htm#dbOptions

    and Revision Log at:

    http://www.aspdb.com/whatsnew.asp

    What version of ASP-db are you using? What kind of database are you using?
    Do you have a dbDBType statement in your program? If so, what is it?

    Mark.

    ------------
    Piero at 3/27/00 6:13:39 AM

    I am using asp-db on a ISP located in the US but I need to input the date in italian format (dd/mm/yyyy).
    Using dbMagicCell=",,format=[dd/mm/yyyy]" works well for the grid but not for add and update.

    Do you have any solutions?

  3. #3
    Frank Guest

    Italian date format (reply)

    You have to give more details in order to get better help. For now, try the following in your asp file -

    ...Detect user's location

    ..... apsdb code
    if Italy then
    X.dbOptions="DateFormat=dd/mm/yyyy,...."
    elseif US then
    X.dbOptions="DateFormat=mm/dd/yyyy,...."
    endif

    Note that if you are using Oracle then you have to do a more vigorous conversion. See documentation about DateFormat and Oracle date format.


    FK



    ------------
    Piero at 3/27/00 6:13:39 AM

    I am using asp-db on a ISP located in the US but I need to input the date in italian format (dd/mm/yyyy).
    Using dbMagicCell=",,format=[dd/mm/yyyy]" works well for the grid but not for add and update.

    Do you have any solutions?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •