![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
20/07/2005, 05:45
|
![Avatar de Nombela](http://static.forosdelweb.com/customavatars/avatar95906_1.gif) | | | Fecha de Ingreso: abril-2005
Mensajes: 611
Antigüedad: 19 años, 10 meses Puntos: 1 | |
para el que le interese se hace asi:
en el evento itemcreated:
if ( e.Item.ItemType == ListItemType.Pager)
{
//Add a new Label Control
Label lblPagerText = new Label();
lblPagerText.Text = " Nodos --> " ;
lblPagerText.ID = "lblPagerText1";
lblPagerText.Font.Bold = true;
//lblPagerText.Attributes.Add("onmousemove","this.st yle=Font-weight:bold");
//Finally add label to Pager control collection
if ( e.Item.Controls[0].FindControl("lblPagerText1" ) == null)
{
e.Item.Controls[0].Controls.AddAt(0,lblPagerText);
}
} |