請幫助我,我寫這段代碼,但它不起作用我的錯誤是什麼,什麼是正確的代碼?在標籤中調用sql查詢
protected void Page_Load(object sender, EventArgs e)
{
SqlCommand cmd = new SqlCommand();
cmd.Connection = new SqlConnection(Class1.CnnStr);
cmd.CommandText = "SELECT MAX(Code) FROM Customer";
cmd.Connection.Open();
cmd.Parameters.AddWithValue(Code_lbl.Text,"@MAX(Code)"+1);
cmd.ExecuteNonQuery();
}
什麼是你想怎麼辦? –
哇。你那邊有什麼打算? – leon