Skip to content
Advertisement

SVG cannot be displayed as an image

I’ve got svg string file on database. I want to show it on my Asp.Net Core projects view. I’m calling my data as Model from controller. When I’m trying to do it, it displays as text on my page. Here is my svg:

And here is my code on Index.cshtml file:

JavaScript

How can fix this?

UPDATE: cs,cshtml and data

Advertisement

Answer

I’ve solved problem. I used @Html.Raw(Model.SVG) on view, SVG files are now displayed.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement