or if you know the UTC / GMT time difference of your doctors,
you can use the DateConvert CF function with the local2utc attrib.

e.g.
...
        // Get current UTC time and add the time difference
        VARIABLES.currUTCdateTime = DateConvert("local2utc", now());
        VARIABLES.regionDateTime = DateAdd("h", VARIABLES.timeDiffSign &
VARIABLES.timeDiffHours, VARIABLES.currUTCdateTime);
        VARIABLES.regionDateTime = DateAdd("n", VARIABLES.timeDiffSign &
VARIABLES.timeDiffMins, VARIABLES.regionDateTime);
...

where:
 - regionDateTime is the current client datetime
 - timeDiffSign takes values + or - (representing time ahead or behind)
 - timeDiffHours => hours value of the client <=> UTC time difference
 - timeDiffMins => mins value of the client <=> UTC time difference


this sol'n would work internationally. 
the only thing is you might have to take into account daylight savings
during summer.
adam.



At 10:26 AM 11/1/00 -0800, you wrote:
>Yes, Just use the zip code as reference, you'll need to do a little
>searching to find a utility to accomplish this but it shouldn't be to
>difficult. I would NOT recommend using a client side time request for the
>simple fact that I have a pc as home that is about an hour off.
>
>Humm, one more thought! Assuming the clients are in the same time zone as
>the doctor all you would need to do is set up a zone for each doctor and
>forget about trying to figure out what zone the client is in.
>
>Good Luck!
>
>--Mark :o)
>
>
>> has anyone deal with the problems of multitple times zones?
>> we are building a site where a patient can book consultation with doctors,
>> but the problem is that they can be in different time zones, and we have
>to
>> figure out a way so that they are all refering to the same time period
>when
>> doing the booking.
>> anyone had experience of doing this?
>> a fusebox solution?
>>
>> thanks
>> _________________________________________________________________________
>> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
>>
>> Share information about yourself, create your own public profile at
>> http://profiles.msn.com.
>>
>> --------------------------------------------------------------------------
>----
>> To Unsubscribe visit
>http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/fusebox or
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in
>the body.
>>
>
>---------------------------------------------------------------------------
---
>To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/fusebox or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
> 

------------------------------------------------------------------------------
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/fusebox or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to