我有一个注册表单,我想提交到 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();
}
提前致谢