示例#1
0
        protected void ModalEventDetailsDelete_Click(object sender, EventArgs e)
        {
            contSchedule = new ScheduleController();
            string eventId = ModalEventDetailsId?.Value.ToString();

            contSchedule.CancelEvent(Session["mas"].ToString(), Session["comp"].ToString(), eventId);

            Response.Redirect(Request.RawUrl);
        }