Hi, I have data like this
`<table>
<tr><td>C#</td></tr>
<tr><td>ASP.NET</td></tr>
<tr><td>WPF</td></tr>
</table>`
How to display this in Silverlight datagrid like below
C#
ASP.NET
WPF
sourcecode
<TextBlock Text="{Binding FAQs}" FontFamily="Verdana" Grid.Row="1" Grid.Column="1" TextWrapping="Wrap" FontWeight="Bold" VerticalAlignment="Center" FontSize="12" Foreground="White"></TextBlock>
Please let me know..
Thanks in advance
Siva