Ver Mensaje Individual
  #5 (permalink)  
Antiguo 11/05/2009, 16:42
elmo10
 
Fecha de Ingreso: mayo-2009
Mensajes: 4
Antigüedad: 14 años, 11 meses
Puntos: 0
Respuesta: scrollbars con filas y columnas fijas

esto es parte del codigo
<head id="Head1" runat="server">
<title>Untitled Page</title>
<style type="text/css">
.EncabezadoFijo {
POSITION: relative;
TOP: expression(this.offsetParent.scrollTop);
BACKGROUND-COLOR: white
}

</style>

</head>
<body>
<form id="form1" runat="server">
<div style="overflow:auto; width:450px; height:200px; align:left;">

<asp:GridView ID="grilla" runat="server" CellPadding="3" Font-Names="Verdana" Height="166px" Width="429px" showheader="true">
<HeaderStyle BackColor="#4A3C8C" Font-Bold="True" CssClass ="EncabezadoFijo" ForeColor="#E7E7FF" />

</asp:GridView>

</div>
</form>
</body>