protected void uoButtonAdd_Click(object sender, EventArgs e)
        {
            string   strLogDescription = "Restricted Nationality Added";
            string   strFunction       = "uoButtonAdd_Click";
            DateTime dateNow           = CommonFunctions.GetCurrentDateTime();

            CountryBLL.SaveRestrictedNationality(GlobalCode.Field2Int(uoDropDownListCountry.SelectedValue),
                                                 GlobalCode.Field2Int(uoDropDownListNationality.SelectedValue), strLogDescription, uoHiddenFieldUser.Value,
                                                 strFunction, Path.GetFileName(Request.Path), CommonFunctions.GetDateTimeGMT(dateNow), CommonFunctions.GetCurrentDateTime());

            BindRestrictedNationality();
        }