Home All Groups Group Topic Archive Search About

Is there a Library or component for creating HTML?

Author
1 Sep 2006 11:20 PM
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.

Author
3 Sep 2006 3:43 PM
PJ6
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

Show quoteHide quote
"Mr. Analogy" <MrAnal***@gmail.com> wrote in message
news:1157152829.169824.43650@b28g2000cwb.googlegroups.com...
>
> 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.
>