Is there a way to do single and double accounting underline in .NET?
No idea about .net, but you could 'fake' it via CSS using a background
image.
Create a background image that can tile horizontally so that it looks like
the type of underline you want. Then, via css:
<span class="accountingUnderline">text</span>
..accountingUnderline {
padding-bottom: 3px;
background: url(image.gif) repeat-y bottom;
}
-Darrel