Hello everyone, I have this svg data
<?xml version="1.0"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">;
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="50" viewBox="0 0 600 100" preserveAspectRatio="xMidYMin" style="transform: scale(0.8); -webkit-transform: scale(0.8); -moz-transform: scale(0.8); -ms-transform: scale(0.8); -o-transform: scale(0.8);">
<g fill="#ffffff">
<rect x="0" y="0" width="400" height="200"/>
<g fill="none" stroke="#000000" stroke-width="2">
<polyline points="153.5,45.5 152.5,47.5 152.5,53.5 151.5,60.5 150.5,68.5 150.5,77.5 149.5,85.5 149.5,92.5 148.5,98.5 148.5,102.5 148.5,106.5 148.5,108.5 148.5,110.5 148.5,111.5 148.5,113.5 149.5,112.5"/>
<polyline points="204.5,33.5 204.5,34.5 204.5,37.5 205.5,41.5 205.5,46.5 206.5,52.5 206.5,57.5 206.5,63.5 206.5,68.5 206.5,72.5 206.5,78.5 206.5,82.5 206.5,85.5 205.5,89.5 205.5,92.5 205.5,95.5 205.5,97.5 205.5,100.5 205.5,102.5 205.5,103.5 206.5,103.5"/>
<polyline points="277.5,22.5 278.5,25.5 278.5,29.5 279.5,36.5 279.5,44.5 280.5,52.5 280.5,61.5 280.5,70.5 280.5,78.5 280.5,86.5 279.5,92.5 279.5,99.5 278.5,106.5 278.5,111.5 278.5,117.5 277.5,123.5 277.5,126.5 277.5,129.5 276.5,133.5 276.5,135.5 276.5,136.5 276.5,137.5"/>
</g>
</g>
</svg>
That I stored in the database. Usually here is how I could display it using gridview.
<asp:GridView ID="gvVisitor" runat="server" >
<Columns>
<asp:TemplateField HeaderText="Signature">
<ItemTemplate>
<%# If(IsDBNull(Eval("visitor_signature")), "N/A", Eval("visitor_signature"))%>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
Now the requirement has changed and I could not used gridview anymore but I have to use standard html table tag. But when I display it, it just shows the string code rather than the SVG image. How could I display the image? It seems the Eval class in the gridview takes care of converting and displaying the SVG.