Is there a Library or component for creating HTML?

  • Thread starter Thread starter Mr. Analogy
  • Start date Start date
M

Mr. Analogy

Does anyone know of a library, DLL, etc. what would make creating HTML
easier?


EXAMPLE:
It might have functions like:

dim hConverter as new HTMLConverter
dim hTable as new TableObject (rows, col)

hTable.Cell (1,1)=hConverter.ToBold ("Hell world") + " this is NOT
bolded"


WebBrowser.Text=hTable.toHTML

I think you get the idea.

Component need not be free.
 
Try the ASP.NET user group for a question like this.

Yes, there is a whole class structure that supports HTML object rendering.
Create a new web project and it will have all the necessary references, and
you will have access to classes such as System.Web.HtmlTable.

Paul
 
Back
Top