<%@ Language=VBScript %> <% 'Check that the person is logged in. Response.Expires=0 if Session("LoggedIn") <> "True" then Response.Redirect "Main.asp" end if %> INA USA Corporation Helpdesk Database <% 'Look up employee information to populate text boxes. if trim(Request.Form("Users")) <> "" then set dbconn = server.CreateObject("adodb.connection") set rstEmployee = server.CreateObject("adodb.recordset") dbconn.open "Provider=SQLOLEDB; Data Source=us010033; Initial Catalog=HelpDesk;user id=helpdesk; password=help" ssql = "SELECT * FROM Employees WHERE Badge=" & "'" & Request.Form("Users") & "'" rstEmployee.Open ssql, dbconn Session("Ext") = rstEmployee("Ext") Session("Location") = rstEmployee("Location") Session("EmpUserName") = rstEmployee("UserName") Session("IPAddress") = rstEmployee("IPAddress") Session("UserNumber") = rstEmployee("UserNumber") dbconn.Close set dbconn = nothing End IF %>

INA Logo Help Desk Ticket
<%Response.Write Now()%>
* Ticket not saved until 'Save Ticket' button is pressed *
Name      Call Opened " tabindex="10">
Ext " tabindex="2">      Method Received
Location " tabindex="3">      Caller's First Contact
Username " tabindex="4">      First Contact Resolved tabindex="13"> Yes tabindex="14"> No
IP Address " tabindex="4"> UUS#  " tabindex="4">  
Users Affected tabindex="5"> Single User tabindex="6"> Multi User      Transferred to
Type of Problem      Call on hold tabindex="16">
Is this a Kaizen Plus Employee CIP request?
> Yes > No
Problem Group:
Description      Hold Description
Resolution      Comments
Call Resolved  tabindex="19">   Date and time resolved " tabindex="20">   Time to complete " READONLY tabindex="21">
User Entered Completion Time " tabindex="22">Minutes
    

<% 'Clear session variables Session("Ext") = "" Session("Location") = "" Session("EmpUserName") = "" %>