we have a system written in PHP, and one of service the system offers is return a random picture.
now, my dot net c# code able to call that service and i have stored that random picture in a C# string, my question what is asp net's way to display that picture.
in PHP , i can use header('content-type :image/gif'), then use GD function
imagecreatefromstring($pictureString) to show picture in a web page.
Bookmarks