SQL 2008 データベースに送信したい登録フォームがあります。正しいと思っていましたが、機能していないようです。これまでの内容を示すために、以下のコードを投稿しました。
基本的に、私が持っているコードが機能するかどうかを知りたいです。
protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
{
SqlConnection NutRegistration = new SqlConnection("Data Source=server; Initial Catalog=DBname;Integrated Security=false;User ID=uname;Password=password");
NutRegistration.Open();
SqlCommand thisCommand = NutRegistration.CreateCommand();
thisCommand.CommandText = "INSERT INTO users (txtNickName, txtEmail, txtPassword) VALUES (nickname, email, password);";
NutRegistration.Close();
}
前もって感謝します