0

このコードを正常に実行し、出力を取得しました。

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 にどのように対処しますか?

4

0 に答える 0