Ver Mensaje Individual
  #3 (permalink)  
Antiguo 07/01/2008, 08:21
carlitosdan
 
Fecha de Ingreso: octubre-2003
Ubicación: Lima
Mensajes: 319
Antigüedad: 21 años, 1 mes
Puntos: 2
Re: Como obtener el html del control table

Dim sb As New System.Text.StringBuilder()
Dim sw As New System.IO.StringWriter(sb)
Dim htw As New HtmlTextWriter(sw)
tabla_prods.RenderControl(htw)
response.write(HttpUtility.HtmlDecode(sb.ToString( )))
htw.Close()
sw.Close()

Esto funciona, claro en visual basic... Muchas gracias


Saludos