我几乎完成了我的代码,但我在 SQL 中遇到了默认值或绑定问题。
这是我的数据库:
- *Date_Contact DateTime*(默认值为
getdate()
) Readed, Status bit
(默认值为0
)
它们都可以为空。
这是我的代码:
protected void btnSendMess_Click(object sender, EventArgs e)
{
try {
ContactUs contact_us = new ContactUs();
contact_us.FullName = txtName.Text;
contact_us.Email = txtEmail.Text;
contact_us.Subject = txtSubject.Text;
contact_us.Message = memoMess.Text;
db.ContactUs.InsertOnSubmit(contact_us);
db.SubmitChanges();
lblNotice.Text = "Your message sent successfully! Thank you";
}
catch (Exception) {
Response.Write("Error! Check your message again");
}
}
当我签入数据库时Date_Contact
,Readed
并且Status
是NULL
...我的代码有什么问题?