-2
お願いします! :C#オブジェクト型System.Web.UI.WebControls.TextBoxから既知のマネージプロバイダのネイティブ型へのマッピングがありません
オブジェクト型System.Web.UI.WebControls.TextBoxから既知のマネージプロバイダのネイティブ型へのマッピングが存在しません。
---実行することができません -
を=================================
cmd.Parameters.AddWithValue("@company", CompanyTxt.Text);
に========
SqlConnection conn = new SqlConnection();
SqlCommand cmd = new SqlCommand();
conn.ConnectionString = ConfigurationManager.ConnectionStrings[1].ToString();
cmd.Connection = conn;
cmd.CommandType = CommandType.StoredProcedure;
cmd.CommandText = "ManageMember";
cmd.Parameters.AddWithValue("@check", "a");
cmd.Parameters.AddWithValue("@username", UserNameTxt.Text);
cmd.Parameters.AddWithValue("@password", PasswordTxt.Text);
cmd.Parameters.AddWithValue("@name", FullNameTxt.Text);
cmd.Parameters.AddWithValue("@email", EmailTxt.Text);
cmd.Parameters.AddWithValue("@phone", PhoneTxt.Text);
cmd.Parameters.AddWithValue("@company", CompanyTxt);
cmd.Parameters.AddWithValue("@gender", RdList.SelectedValue);
cmd.Parameters.AddWithValue("@BirthDate", BirthdateTxt.Text);
cmd.Parameters.AddWithValue("@question", Quastxt.Text);
cmd.Parameters.AddWithValue("@answer", AnswTxt.Text);
conn.Open();
cmd.ExecuteNonQuery();
lblMsg.Text = "User Added Successfully";
conn.Close();
将来、常に例外スタックトレースを送信するか、例外をスローしているコード行を少なくとも示してください。 –