// DELETE: api/Sellers/5 public bool Delete(int id) { return(SellersBLL.DeleteSeller(id)); }
protected void Button11_Click(object sender, EventArgs e) { //从seller表中删除该用户 SellersBLL.DeleteSeller(TextBox5.Text.Trim()); Label13.Text = "删除成功!"; }