R
Rosau
I create a table dynamically using VB, How do I get HTML code for
that table into a string variable ??? any sugestion, Thanks
that table into a string variable ??? any sugestion, Thanks
I create a table dynamically using VB, How do I get HTML code for
that table into a string variable ??? any sugestion, Thanks
Rosau said:Could you please give me an example... how to use this RenderControl
Method and HtmlTextWriter, Thanks !!!
pb said:Dim sb As New System.Text.StringBuilder()
Dim sw As New StringWriter(sb)
Dim hw As New Web.UI.HtmlTextWriter(sw)
ptable.RenderControl(hw)
and then sb.ToString()