%
'*********************************************************************
' shop administration only
' Version 4.50 Sept 2002 add sort
' use to display who has logged into adminitrative domain
'********************************************************************
ShopCheckAdmin "shopa_loghist.asp"
ShopOpenDatabase con
If Request("Delete")<>"" Then
For Each item in Request("DeleteHis")
del = "delete from tbllog where fldauto=" & cint(item)
con.Execute(del)
Next
End If
AdminPageHeader
sql = "select * from tbllog order by flddate DESC, fldtime DESC"
Set objRec = con.Execute(SQL)
%>