
21/12/2004, 13:09
|
| | Fecha de Ingreso: diciembre-2004
Mensajes: 130
Antigüedad: 20 años, 3 meses Puntos: 0 | |
Page.FindControl Hola ...
Código:
int i = 1;
System.Web.UI.Control oControl = Page.FindControl("Label"+i);
if(oControl!=null)
{
string valor = ((Label)oControl).Text;
//Tu código...
}
Saludos cordiales.
__________________ langdotnet |