在下面的代码中我使用标签和文本框将数据发送到sql。但我没有使用标签和文本框,而是希望在按钮点击时将数据从一个表发送到另一个表。请让我知道最短路径。
SqlConnection con1 = new SqlConnection(strcon);
con1.Open();
SqlCommand com = new SqlCommand("update coupon set status =('" + Label2.Text + "'),macaddress =('" + mac.Text + "') where accode =('" + usename.Text + "')", con1);
com.ExecuteNonQuery();
con1.Close();
AddNewUserToNomadix();