Exemplo n.º 1
0
    private void StoreAndContinue()
    {
        List <string> lstIDs = CGridView.GetUncheckedRowsList(
            gvExistingCL,
            "chkSelect");

        foreach (string strID in lstIDs)
        {
            PatientIDs = PatientIDs.Replace("," + strID + ",", ",");
        }

        if (_Continue != null)
        {
            CAppUserControlArgs args = new CAppUserControlArgs(
                k_EVENT.SELECT,
                k_STATUS_CODE.Success,
                string.Empty,
                "1");

            _Continue(this, args);
        }
    }