I may be naive, but if you know what the time difference is, why not just
adjust the time retrieved by this amount.
Sure it needs JS, but tain't difficult, is it?
This script writes time
<script type="text/javascript">
var d = new Date()
document.write(d.getHours() + ':' + d.getMinutes() +':' + d.getSeconds())
</script>
EG for me it wrote 13:46:24
So this
<script type="text/javascript">
var d = new Date()
document.write(d.getHours() - 2 + ':' + d.getMinutes() +':' +
d.getSeconds())
</script>
writes 11:46:24
You could even add PST to what is writen if you want
<script type="text/javascript">
var d = new Date()
document.write(d.getHours() - 2 + ':' + d.getMinutes() +':' + d.getSeconds()
+ " PST")
</script>
11:46:24 PST
--
Cheers,
Trevor L.
Website:
http://tandcl.homemail.com.au
Thomas A. Rowe wrote:
> Not possible when using the FP component, requires a JavaScript Data
> & Time Script or the use of Server-Side Scripting.
>
> --
> ==============================================
> Thomas A. Rowe (Microsoft MVP - FrontPage)
> ==============================================
> If you feel your current issue is a results of installing
> a Service Pack or security update, please contact
> Microsoft Product Support Services:
> http://support.microsoft.com
> If the problem can be shown to have been caused by a
> security update, then there is usually no charge for the call.
> ==============================================
>
> "ComputerSnack" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Our web server is in Eastern Time Zone (Kentucky), and we are in in
>> the Pacific Time Zone (California). I'm using the date & time web
>> component to display the date & time the page was last updated,
>> however I would like it to show the time in Pacific Standard Time
>> (which is different than the web server). Is this possible? If so,
>> do you have any suggestions on how to do it?
>>
>> Thanks,
>>
>> Kevin