08/01/2010, 07:43
|
| | Fecha de Ingreso: octubre-2009
Mensajes: 11
Antigüedad: 15 años, 1 mes 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. |