Ejemplo n.º 1
0
 protected void lbtnDisable_Click(object sender, EventArgs e)
 {
     isReset = false;
     try
     {
         serviceTypeMgr.DisableServiceType(this.hiCheckedIds.Value);
     }
     catch (Exception ex)
     {
         PageCommon.AlertMsg(this, "Failed to disable the selected Service Type(s).");
         LPLog.LogMessage(LogType.Logerror, "Failed to disable the selected Service Type(s), exception: " + ex.Message);
     }
     BindGrid();
 }