Ejemplo n.º 1
0
    protected void lbDelete_Click(object sender, EventArgs e)
    {
        ImageButton linkButton = new ImageButton();

        linkButton = (ImageButton)sender;
        bool result = PropertyManager.DeleteProperty(Convert.ToInt32(linkButton.CommandArgument));

        showPropertyGrid();
    }
Ejemplo n.º 2
0
 public ActionResult DeleteProperty(long propertyId)
 {
     PropertyManager.DeleteProperty(propertyId);
     return(RedirectToAction("Index"));
 }