I have a situation where image is currently saved on IIS Server and displayed..
Currently this HTML fragment is saved into the SQL Server database:
<img class='img-responsive' src='../resources/files/70382f46-a254-49c2-b296-9c10b2d6d152.jpg' width='871' height='503'/>
This expects that the image exists on IIS server.
Now I want to save the image itself in SQL Server.
Is there any way I can save something like
<img class='img-responsive' src="Actual Image" width='871' height='503'/>
If so what should be the datatype in SQL Server be, any example or links?
Thanks JM