home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / full / atlantic / Software / Teweb / data1.cab / Pages / scripts / support.asp < prev    next >
Encoding:
Text File  |  2000-02-14  |  912 b   |  28 lines

  1. <%@ LANGUAGE="VBSCRIPT" %>
  2. <%    Set clsTes = Session("TES")
  3.     If clsTes.LoggedIn = False Then
  4.         Set clsTes = Nothing
  5.         Response.Redirect("../loggedout.htm")
  6.     End If 
  7.     On Error Resume Next
  8. %>
  9. <!-- #INCLUDE FILE = "settings/colours.txt" -->
  10. <HTML>
  11. <HEAD>
  12. <META NAME="GENERATOR" Content="Microsoft Visual InterDev 1.0">
  13. <META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
  14. <TITLE>Timesheet Expert Web Support Page</TITLE>
  15. </HEAD>
  16.  
  17. <BODY BGCOLOR="<%= BackColor %>" LINK="<%= LinkColor %>" VLINK="<%= VLinkColor %>" ALINK="<%= ALinkColor %>" TEXT="<%= TextColor %>">
  18. <BASEFONT SIZE=2 COLOR="<%= TextColor %>">
  19.  
  20. Current Locale: <% = Session.LCID %> <BR>
  21. Current System User: <%= clsTes.CurrentUser %> <BR>
  22. Current Short Date Format: <%= clsTes.CurrentDateFormat %> <BR>
  23. Current Currency Symbol: <%= clsTes.CurrentCurrency %> <BR>
  24.  
  25. </BODY>
  26. </HTML>
  27. <%    Set clsTes = Nothing %>
  28.