Unless I'm missing something, you just need to add the field name to the field list, and the value for the field in the corresponding position in the value list.
Set objRS2 = Server.CreateObject("ADODB.Recordset")
strSQL = "INSERT INTO " & strTablePrefix & "ONLINE (UserID,UserIP,DateCreated,CheckedIn,LastChecked,M_BROWSE,M_CHATTER) VALUES ('"
strSql = strSQL & strOnlineUser & "','" & strOnlineUserIP & "','" & strOnlineDate & "','" & strOnlineCheckInTime & "','" & strOnlineCheckInTime & "','" & strOnlineLocation & ",1')"
my_Conn.Execute (strSql)
======
Doug G
======
Edited by - Doug G on 20 August 2001 22:57:58