示例#1
0
        protected void DeleteUserCon_Click(object sender, ImageClickEventArgs e)
        {
            var btn       = (ImageButton)sender;
            int conUserId = Convert.ToInt32(btn.CommandArgument);
            ControllerRepository conUserReb = new ControllerRepository();

            conUserReb.DeleteUserController(conUserId);
            BindRepeater();
        }