Exemple #1
0
    protected void btnXoa_Click(object sender, EventArgs e)
    {
        cls_Restaurant cls;
        List <object>  selectedKey = grvList.GetSelectedFieldValues(new string[] { "restaurant_id" });

        if (selectedKey.Count > 0)
        {
            foreach (var item in selectedKey)
            {
                cls = new cls_Restaurant();
                tbRestaurant checkImage = (from i in db.tbRestaurants where i.restaurant_id == Convert.ToInt32(item) select i).SingleOrDefault();
                if (cls.Restaurant_Xoa(Convert.ToInt32(item)))
                {
                    alert.alert_Success(Page, "Xóa thành công", "");
                }
                else
                {
                    alert.alert_Error(Page, "Xóa thất bại", "");
                }
            }
        }
        else
        {
            alert.alert_Warning(Page, "Bạn chưa chọn dữ liệu", "");
        }
    }
Exemple #2
0
    protected void btnLuu_Click(object sender, EventArgs e)
    {
        cls_Restaurant cls = new cls_Restaurant();

        if (Page.IsValid && FileUpload1.HasFile)
        {
            string filename      = Path.GetRandomFileName() + Path.GetExtension(FileUpload1.FileName);
            string fileName_save = Path.Combine(Server.MapPath("~/uploadimages/imagecuahang"), filename);
            FileUpload1.SaveAs(fileName_save);
            image = "/uploadimages/imagecuahang/" + filename;
        }
        if (checknull() == false)
        {
            alert.alert_Warning(Page, "Hãy nhập đầy đủ thông tin!", "");
        }
        else
        {
            if (Session["_id"].ToString() == "0")
            {
                if (cls.Restaurant_Them(txtName.Text, txtPhone.Text, txtEmail.Text, txtAddress.Text, image, txtMap.Text, txtMap2.Text, txtVideo.Text, Convert.ToInt32(cbbthanhpho.Value.ToString())))
                {
                    alert.alert_Success(Page, "Thêm thành công", "");
                    popupControl.ShowOnPageLoad = false;
                    loadData();
                }
                else
                {
                    alert.alert_Error(Page, "Thêm thất bại", "");
                }
            }
            else
            {
                if (cls.Restaurant_Sua(Convert.ToInt32(Session["_id"].ToString()), txtName.Text, txtPhone.Text, txtEmail.Text, txtAddress.Text, image, txtMap.Text, txtMap2.Text, txtVideo.Text, Convert.ToInt32(cbbthanhpho.Value.ToString())))
                {
                    //alert.alert_Success(Page, "Cập nhật thành công", "");
                    ScriptManager.RegisterClientScriptBlock(Page, this.GetType(), "Alert", "swal('Cập nhật thành công','','success').then(function(){grvList.Refresh();})", true);
                    popupControl.ShowOnPageLoad = false;
                    loadData();
                }
                else
                {
                    alert.alert_Error(Page, "Cập nhật thất bại", "");
                }
            }
        }
    }