im using the ASP MVC REST implementation and extracting image data from a table and sending it through json what is the best practice in doing this inside the controller?
thanks a lot :D
im using the ASP MVC REST implementation and extracting image data from a table and sending it through json what is the best practice in doing this inside the controller?
thanks a lot :D
Your best bet would be to convert the binary image file as a base64 string on the server before sending it to the client then convert it back into binary on the client.
There's a great question here that describes some of the nuances of this approach