Hi Tee,
I guess one or more of the fields in your code is the one you are having trouble with, as you are explicitly setting the field in the db to the Request value, the code is setting the db field to blank, this will override the default value set in the db.
You need to validate the Request value, as you have set a default value already, you could just do:
Code:
If Trim(Request("calltype")) <> "" Then
rs("CallType") = Request("calltype")
End If
You may however want to check that the all field values are valid, as it is very easy for someone to create a form & target your page with it to add bogus data to your db.
Kind regards,
Chris