S
shapper
Hello,
I created a list as follow:
Dim feedback As New List(Of String)
I need to display each item of this list as follow:
<span style="margin: 2px;">item 01<br /><span>
<span style="margin: 2px;">item 02<br /><span>
....
I used the following:
String.Join("<br />", feedback.ToArray)
This adds the <br /> part but I have not been able to add the opening
and ending span tags.
Could someone, please, help me out?
Thanks,
Miguel
I created a list as follow:
Dim feedback As New List(Of String)
I need to display each item of this list as follow:
<span style="margin: 2px;">item 01<br /><span>
<span style="margin: 2px;">item 02<br /><span>
....
I used the following:
String.Join("<br />", feedback.ToArray)
This adds the <br /> part but I have not been able to add the opening
and ending span tags.
Could someone, please, help me out?
Thanks,
Miguel