Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/09/2004, 09:23
MartinAcevedo
 
Fecha de Ingreso: junio-2001
Ubicación: Cordoba, Argentina
Mensajes: 190
Antigüedad: 22 años, 11 meses
Puntos: 0
el error es porque no debe existir la fila y/celda en donde queres poner tu imagen
debarias agragarlo con el editor o con codigo

Dim img As New System.Web.UI.WebControls.Image
img.ImageUrl = "hola.jpg"
img.Width = System.Web.UI.WebControls.Unit.Pixel(50)
img.Height = System.Web.UI.WebControls.Unit.Pixel(50)
Dim Row As New TableRow
Dim Cell As New TableCell
Cell.Controls.Add(img)
Row.Cells.Add(Cell)
tblInt.Rows.Add(Row)
__________________
Martin