這個問題是沿着HTML table horizontal spacing追加html空間算法
我們有一箇舊的代碼庫,不能使用css。當表中的整個列爲空時,生成的表非常難看。我們有一個文本電子郵件解決方案,最後添加一些空格,直到您使用New String指定的剩餘字符集爲止。由於新字符串只需要一個字符,就可以看到一行代碼,以及人們可以想到的少量代碼示例。
我們.NET中使用3.5SP1
Public Function StringSize(ByVal data As String, ByVal size As Short, ByVal usehtml As Boolean) As String
If data.Length > size Then
Return Left(data, size - 4) & "... "
Else
If usehtml Then
'small algorithm here (& nbsp ;)
Else
Return data & New String(" ", size - Len(data))
End If
End If
End Function
您可以使用.NET 3.5 SP1,但不能使用CSS? – Kredns 2009-06-26 21:46:48