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?
views:
13answers:
1
+1
A:
HtmlTextWriter should be in .NET 1.1. I thank that is the cleanest way using only .NET 1.1 types.
driis
2010-07-27 08:43:06