****http://home.xdb.com/techsup/scripts/login.asp: <% LoggedIn = False BadPassword = False If Request.Form("comno") <> "" Then Set Session("comno") = Request.Form("comno") Set Session("locno") = Request.Form("locno") Set Session("conno") = Request.Form("conno") Else If Request.QueryString("change").count = 1 Then Session.Abandon Else Session("comno") = Request.Cookies("trax")("comno") Session("locno") = Request.Cookies("trax")("locno") Session("conno") = Request.Cookies("trax")("conno") End If End If ComNo = Session("comno") LocNo = Session("locno") ConNo = Session("conno") If not IsNumeric(ComNo) Then ComNo = "" End If If not IsNumeric(LocNo) Then LocNo = "" End If If not IsNumeric(ConNo) Then ConNo = "" End If If ComNo = "" Then ComNo = 0 End If If LocNo = "" Then LocNo = 0 End If If ConNo = "" Then ConNo = 0 End If If ComNo > 0 And LocNo > 0 And ConNo > 0 Then Set Conn = Server.CreateObject("ADODB.Connection") Conn.Open "JUGGLER32" sql="SELECT firstname, lastname, company" & _ " FROM trax.contact t, trax.company p" & _ " WHERE p.Com_No=t.Com_No" & _ " AND t.Com_No=" & ComNo & _ " AND t.Loc_No=" & LocNo & _ " AND t.Con_No=" & ConNo Set RS = Conn.Execute(sql) If RS.eof Then Response.Status = "403 Not Authorized" BadPassword = True Else LoggedIn = True Name = RS("firstname") & " " & RS("lastname") Session("company") = RS("company") Response.Cookies("trax")("comno") = Session("comno") Response.Cookies("trax")("locno") = Session("locno") Response.Cookies("trax")("conno") = Session("conno") Response.Cookies("trax").Expires = Now + 365 End If RS.close End If If LoggedIn = true And Session("called") <> "" Then File = Session("called") Session("called") = "" Response.Redirect File End If %> XDB Tech Support Login <% If LoggedIn = false Then %>

As a Registered User, you may obtain specific information about XDB products, check on the status of open technical support issues, and in the future, you will be able to provide information directly into our technical support database as well as view important information to help us quickly solve your technical problems.

This area of the web site is restricted to registered customers. Please remember that you may only access this site if you are currently under a paid maintenance agreement with XDB. If you are not currently under maintenance but would like to purchase the maintenance option, send us an Email at steph@xdb.com.

Please note: this site contains information for U.S.A. customers only. For all other requests, please call your technical support representative.

Please enter your 3 part customer ID number below. This information is found on your invoice or may be obtained by calling XDB Technical Support at (410) 312-9400.

<% If BadPassword = True Then %>

You have entered an invalid ID code.

<% End If %>

ID Number: > . > . >

<% End If %> <% If LoggedIn = true Then %>
XDB Systems Tech Support Registered users site.

Welcome, <%= Name %>, <%= Session("company") %>

(<%= ComNo %>.<%= LocNo %>.<%= ConNo %>)
View open incidents

Change login ID

Download products / updates

<% End If %>