| Track a Shipment |
Checking your order
status online is fast, easy and accurate!
Just enter any one of the data items below about
your order and the order status information will
be retrieved. Please enter only
one of the requested items then press
the "Find Orders" button. 3 orders will
display at one time.
Enter one of the
following to retrieve your order
status:
<%
dim SQL2
dim PONumber
dim OrderID
dim ShipEmail
PONumber = request("PONumber")
OrderID = request("OrderID")
ShipEmail = request("ShipEmail")
If (PONumber <> "" AND OrderID = "" AND ShipEmail = "") Then
SQL2 = "SELECT * FROM Order_Status WHERE PO_Number = ('" & PONumber & "') "
ElseIf (PONumber = "" AND OrderID <> "" AND ShipEmail = "") Then
SQL2 = "SELECT * FROM Order_Status WHERE Order_ID = ('" & OrderID & "') "
ElseIf (PONumber = "" AND OrderID = "" AND ShipEmail <> "") Then
SQL2 = "SELECT * FROM Order_Status WHERE Ship_Notice_Email = ('" & ShipEmail & "') "
Else
SQL2 = "SELECT * FROM Order_Status WHERE PO_Number = '1Z3098sd'"
End If
%>
<%
Set RS2 = Server.CreateObject("ADODB.Recordset")
Dim colorchanger
Dim color1
Dim color2
colorchanger = 0
color1 = "#C5D3E7"
color2 = "#B0C4DE"
RS2.Open SQL2, Conn2, 1, 3
If NOT (RS2.BOF AND RS2.EOF) Then
%>
|
| PO: <%=RS2("PO_Number")%> Customer: <%=RS2("Customer_Name")%> Last Update: <%=RS2("Last_Updated")%> |
|
| In-Hands |
Estimated Ship |
Order ID |
Carrier |
Tracking # |
<%
Do While Not RS2.eof
If colorchanger = 1 Then
colorchanger = 0
color1 = "#C5D3E7"
color2 = "#B0C4DE"
Else
colorchanger = 1
color1 = "#DAE3F0"
color2 = "#C5D3E7"
End If
%>
| <%=RS2("In-Hands_Date")%> |
<%=RS2("Estimated_Ship_Date")%> |
<%=RS2("Order_ID")%> |
<%=RS2("Carrier")%> |
<%=RS2("Tracking_No")%> |
<%
RS2.movenext
Loop
%>
<%End If%>
<%If (RS2.BOF AND RS2.EOF) Then%>
There are currently no orders that match your search.
<%End If%>
<%
RS2.close
Set RS2 = Nothing
%>
|
Check Carrier Shipping Status
Online
Now that you have
the Carrier name and Tracking Number from your
order inquiry above, you can easily check the
shipping status directly with the carrier's web
site, simple as 1-2-3: |
 |