예제 #1
0
    //批量删除
    protected void BatDel_Click(object sender, EventArgs e)
    {
        string ids = Request.Form["prochk"];

        if (string.IsNullOrEmpty(ids))
        {
            function.Script(this, "alert('未选择商品');");
        }
        else
        {
            cartBll.U_DelByIDS(ids, buser.GetLogin().UserID);
            MyBind();
        }
    }