当前位置:主页 > 软件编程 > ASP代码 >

[转]ASP常用函数:TimeZone

时间:2023-02-06 10:30:33 | 栏目:ASP代码 | 点击:

功能:获取服务器所在时区

复制代码 代码如下:

<% 
Function TimeZone() 
    Set oShell = CreateObject("WScript.Shell") 
    atb = "HKEY_LOCAL_MACHINE\System\CurrentControlSet\" & _ 
         "Control\TimeZoneInformation\ActiveTimeBias" 
    TimeZone = - oShell.RegRead(atb) / 60 
End Function 
%> 

您可能感兴趣的文章:

相关文章