可以使用
<%@ LANGUAGE=VBScript %>
<SCRIPT LANGUAGE = "JScript" RUNAT = SERVER>
var TempDate = new Date();
TempDif = TempDate.getTimezoneOffset();
Session("sTempDif") = TempDif;
</SCRIPT>
<%
Dim CompObj, Index, Version, Location, GMTDate, LocDate, MinDif
MinDif = Session("sTempDif")
On Error Resume Next
Set CompObj = GetObject("IIS://LocalHost")
Index = 0
' 重复直到方法返回错误。
Do While True
' 空位置输入字符串表示枚举所有位置。
CompObj.EnumBackups "", Index, Version, Location, GMTDate
If Err.Number <> 0 Then
'如果返回错误,则不再枚举备份。
Exit Do
End If
Response.Write Version & ", "
Response.Write Location & ", "
Response.Write GMTDate & ", "
'转换到服务器本地日期和时间。
LocDate = DateAdd("n", (-MinDif), GMTDate)
Response.Write "(" & LocDate & ")"
Response.Write "<BR>"
Index = Index + 1
Loop
%>
© 1997-2003 Microsoft Corporation。保留所有权利。