09/03/2006, 13:18
|
| | | Fecha de Ingreso: junio-2004 Ubicación: Misantla,Ver.Mexico
Mensajes: 181
Antigüedad: 20 años, 6 meses Puntos: 0 | |
Pues quedo resuelto, por si a alguien le sirve en algun futuro, y gracias por los tips Xnown string namecontrol="System.Web.UI.WebControls.TextBox" //Generar el control usando una cadena de texto System.Reflection.Assembly asm; asm = typeof(System.Web.UI.Page).Assembly; System.Web.UI.WebControls.WebControl ControlObject = (System.Web.UI.WebControls.WebControl) asm.CreateInstance(namecontrol);
//Agregar a un Panel Panel1.Controls.Add(ControlObject);
saludos |