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:
Is there a control in ASP.NET that will allow me to set its Image property as it shows above?
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?