
16/07/2004, 10:54
|
| | Fecha de Ingreso: abril-2003
Mensajes: 606
Antigüedad: 21 años, 11 meses Puntos: 2 | |
Prueba esto:
Código:
Label lbl = (Label) (DataList1.Items[DataList1.SelectedIndex].FindControl("NombreDelLabel"));
string contenido;
if(lbl != null)
contenido = lbl.Text;
|