Example #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         string num = Request["num"];
         if (!String.IsNullOrEmpty(num))
         {
             Elemento l = DAOTabla.FindElemento(num);
             this.lblNumero.Text  = l.Numero;
             this.lblNombre.Text  = l.Nombre;
             this.lblSimbolo.Text = l.Simbolo;
         }
     }
 }
Example #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     list_e = DAOTabla.TodosElementos();
     //return View(list_e);
     //RecorrerElemento(list_e);
 }