我已经成功执行了这段代码,我得到了我的输出。
If txt1.Text = "abc" Then
txt2.Text = "11111"
End If
Dim sb As New StringBuilder
For Each c as Char in txt2.Text
sb.AppendFormat("<img src='{0}.jpg' />", c)
Next
Literal1.Text = sb.ToString()
我的输出如下图所示
我想把这个输出放在一个表格中,最终看起来像显示的图像。我将如何解决 Literal1.Text 来做到这一点?