I am using this piece of code to show a date and time :-
<%
Dim objFSO
Dim objFile
Dim dateModified
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.GetFile(Server.MapPath("sradmin1.asp"))
dateModified = objFile.DateLastModified
%>
<div>
<br />
Last Modified <%= FormatDateTime(dateModified, 1) %>; at <%= FormatDateTime(dateModified, 3) %><br />
</div>
<%
Set objFile = Nothing
Set objFSO = Nothing
%>
Trouble is my Hosting Company server is 14 hours behind me and I would like it to reflect my Date and Time when giving me a result on a webpage
Can anyone help please
Topshed ...