Hola a todos.
Empezando con ASP.NET me encuentro con el siguiente problema. Estoy creando una tabla y no sé como dimensionar las celdas en tiempo de ejecución. Me creo los dos TableCell, el TableRow y añado a la tabla.
Lo que quiero es que coja el ancho de la ventana y se vaya redimensionando según se redimensiona ésta. En HTML le das el % y te lo hace.
Dim tituloCurva As New TableCell
tituloCurva.Text = "Curva de avance de la Construcción"
tituloCurva.BackColor = Color.WhiteSmoke
tituloCurva.HorizontalAlign = HorizontalAlign.Center
tituloCurva.BorderStyle = BorderStyle.Solid
tituloCurva.BorderWidth = New Unit(1)
tituloCurva.Width = New Unit(50%)
Dim tituloInforme As New TableCell
tituloInforme.Text = "Informe de Construcción"
tituloInforme.BackColor = Color.WhiteSmoke
tituloInforme.HorizontalAlign = HorizontalAlign.Center
tituloInforme.BorderStyle = BorderStyle.Solid
tituloInforme.BorderWidth = New Unit(1)
tituloInforme.Width = New Unit(50%)
Dim FilaCurvaInforme As New TableRow
FilaCurvaInforme.Cells.AddRange(New TableCell() {tituloCurva, tituloInforme})
FilaCurvaInforme.Width = New Unit(100%)
tblAvances.Rows.Add(FilaCurvaInforme)
Un saludo y gracias