Display Bitmap

Ice725

Freshman
Joined
Apr 19, 2004
Messages
31
I'm 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 it's Image property as it shows above?
 
Back
Top