Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/05/2011, 16:56
Avatar de jaullo
jaullo
 
Fecha de Ingreso: abril-2009
Mensajes: 994
Antigüedad: 15 años
Puntos: 30
Respuesta: Listview tomar el valor de un Checkbox

Hola,

Para ello debes recorrer cada elemento. Algo asi
foreach (ListViewItem item in myListView.Items)
{
CheckBox i = (CheckBox)item.FindControl("ListCheckBoxField");
if (i.ChecKed)
{
//hago algo
}

}

Saludos,

Jason
Microsoft Community Contributor
__________________
http://geekswithblogs.net/jaullo/Default.aspx
Si te he ayudado regalame Karma positivo!!!