tags:

views:

13

answers:

1

I'm currently doing some maintenance on some existing .net 1.1 VB code that creates HTLM from code.
It mainly consists of a bunch of stringbuilder.Append("<table>").
Isn't there a cleaner way to create HTML tags?

+1  A: 

HtmlTextWriter should be in .NET 1.1. I thank that is the cleanest way using only .NET 1.1 types.

driis