ラベルと4つのtekstboxから2つのintと3つの文字列をデータベースに挿入しようとしています。
私が得ているエラー:
メソッドInsertにはいくつかの無効な引数があり、引数はstringからintに変換できません。
lblHidden.Text
文字列が含まれTextBoxDagnummer.Text
ていますが、整数に変換する必要があります。挿入前または挿入内でそれらを変換しますか?構文は何ですか?
背後にあるコード
protected void Button2_Click(object sender, EventArgs e)
{
Vakinhoudclass.Insert(lblHidden.Text, TextBoxDagnummer.Text, TextBoxHoofdstuk.Text, TextBoxOnderwerp.Text, TextBoxLes.Text);
GridView1.DataBind();
}