|
原因是在資料庫中欄位值是空的,讀出的值當然不在 Item List 裡面,所以它就告訴你「它不在項目清單中」了。修改方法:將 <memberAdd1.aspx.cs> 第 27 列改為 ads.InsertCommand = "Insert into memberData (m_username, m_sex, m_email, m_birthday, m_real, m_ctm) VALUES ('" + Context.User.Identity.Name + "', 'm', '" + email + "', '1980/1/1', false, 'nct')"; |