ASP.NETでLINQ to SQLを使用してデータを挿入したいとします。私のコードは以下の通りです。しかし、 'Kaydet'ボタンをクリックすると、エラーが発生しました。どうすれば修正できますか?ASP.NETでLINQ to SQLを使用して挿入 - エラー
protected void btnKaydet_Click(object sender, EventArgs e)
{
DBDataContext dbnew = new DBDataContext();
tbl_Kullanicilar user = new tbl_Kullanicilar();
user.Kullanici_adi = txtKullaniciAdi.Text;
user.Profil_isim = txtİsim.Text;
user.Mail = txtEmail.Text;
user.Kullanici_soyisim = txtSoyisim.Text;
user.Kullanici_Sifre = txtSifre.Text;
user.Durum = drpDurum.Text;
user.Tur = drpTür.Text;
user.Telefon = txtTelefon.Text;
dbnew.tbl_Kullanicilars.InsertOnSubmit(user);
dbnew.SubmitChanges();
}
Error with English : Invalid postback or recall independent variable. Event validation was enabled using or <% @ Page EnableEventValidation = "true"%> in the configuration. This feature verifies that, for security reasons, the return or recall events arguments result from the server control handling them at startup. If the data is valid and as expected, use the ClientScriptManager.RegisterForEventValidation method to save the return or recall data for validation. Explanation: An unhandled exception occurred while executing the current web request. Please observe the stack trace to find out more about the error and where it originates in the code. Exception Details: System.ArgumentException: Invalid postback or recall independent variable. Event validation was enabled using or <% @ Page EnableEventValidation = "true"%> in the configuration. This feature verifies that, for security reasons, the return or recall events arguments result from the server control handling them at startup. If the data is valid and as expected, use the ClientScriptManager.RegisterForEventValidation method to save the return or recall data for validation. Source Error: An exception was thrown when the current web request was executed. Information about the source and location of the exception can be determined using the following exception stack trace.
がないよう、テキストとしてのコードを投稿してくださいする必要があります画像。また、エラーメッセージを英語に翻訳すると非常に役に立ちます。 –
投稿が更新されます。 –
提出されているフォームに入力されたデータのリクエストの検証に失敗したために発生したエラーです。フォームに入力したデータを教えてください。無効なデータには、いくつかのHTMLコンテンツやスクリプトがあります。 –