Thanks i tried that and it still entered blank data.. here's one of the updates i'm using maybe you can have a look at it and make a suggestion. Thanks for the reply.
Set cnTelmon = Server.CreateObject("ADODB.Connection"

cnTelmon.Open "DSN=Telmon"
Set rsComp = Server.CreateObject("ADODB.Recordset"

rsComp.Open "Computers", cnTelmon, adOpenStatic, adLockOptimistic
rsComp.addnew
rsComp("SerialNo"

= Request.Form("compSerialNo"

rsComp("Description"

= Request.Form("compDescription"

rsComp("IssuedTo"

= Request.Form("compIssuedTo"

rsComp("DateIssued"

= Request.Form("compDateIssued"

rsComp("Notes"

= Request.Form("compNotes"
rsComp.Update
rsComp.MoveLast
rsComp.Close
Set rsComp = Nothing
This is actually causing blank data to be entered into the database.