コード例 #1
0
    protected void LNB_Borrar_Click(object sender, EventArgs e)
    {
        DataListItem Item = ((LinkButton)sender).NamingContainer as DataListItem;

        if (Item != null)
        {
            int id = int.Parse(((Label)Item.FindControl("LB_id")).Text);
            new DaoNotificacion().eliminar(id);
        }
        DL_Notificaciones.DataBind();
        Response.Redirect("~/Vistas/Notificaciones/Notificaciones.aspx");
    }
コード例 #2
0
 protected void LNB_BorrarTodas_Click(object sender, EventArgs e)
 {
     new DaoNotificacion().eliminarTodas(usuario.NombreDeUsuario);
     DL_Notificaciones.DataBind();
     Response.Redirect("~/Vistas/Notificaciones/Notificaciones.aspx");
 }