Link to home
Start Free TrialLog in
Avatar of Insomniac_PhD
Insomniac_PhD

asked on

ASP simple time offset

Hi.

I have the time offset stored in a variable like +3 or -2
I am dsiplaying the server time with time() like Server Time:5:15:18 PM    
How can I display the offset time like   Your Time:8:15:18 PM  

I am thinking something like <%=time(variableoffsettime)%>

??? Not sure how it goes..

:) Thanks
Avatar of Lee W, MVP
Lee W, MVP
Flag of United States of America image

DateAdd('h',variableoffsettime,time) - I'll double check that and post the link for the DateAdd function
ASKER CERTIFIED SOLUTION
Avatar of Lee W, MVP
Lee W, MVP
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial