1
我幾乎完成了我的代碼,但是我在SQL中有一個默認值或綁定的問題。默認值或SQL Server Express中的綁定屬性無法正常工作
這裏是我的數據庫:
- * Date_Contact日期時間*(與
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
...什麼是錯在我的代碼?
你在哪裏定義了兩個有問題的字段? –
@GeorgeJohnston我正在使用LINQ –