Ver Mensaje Individual
  #4 (permalink)  
Antiguo 08/01/2010, 07:43
cben
 
Fecha de Ingreso: octubre-2009
Mensajes: 11
Antigüedad: 14 años, 7 meses
Puntos: 0
Respuesta: Fixed Width in TabPanels

Finally I used this line in the code behind:

protected void Page_Load(object sender, EventArgs e)
{

if(!Page.IsPostBack)
{
ClientScript.RegisterStartupScript(this.GetType(), "notification", "document.getElementById('ctl00_cntPh_TabContainer ').style.width = '900px';",true);

}

}

where "ctl00_cntPh_TabContainer" is the client control name of the tab's Container.