Display Bitmap

Ice725

Active member
Joined
Apr 19, 2004
Messages
31
Im trying to use MapPoint in my ASP.NET app. In the Windows-Forms example I found online, it uses a PictureBox to show the Map:

Code:
MapImage tempImage = renderService.GetMap(mapSec)[0];

myPictureBox.Image = new Bitmap(new MemoryStream(tempImage.MimeData.Bits, false), true);

Is there a control in ASP.NET that will allow me to set its Image property as it shows above?
 
Back
Top