ThinkGeo.com    |     Documentation    |     Premium Support

Image paths, development vs production

I currently have image paths for WebImages set up like this...


/images/image01.png


 


When I publish I am not publishing to my inetpub root directory through iis but instead am publishing to a subdirectory.


 


The problem is that the images don't show because they are in the wrong directory.


 


The application is looking to pinonanlytics.com/images for pictures but the pictures publish to pinonanalytics.com/marketshareiq/images


How can I use one path that works everywhere?



Eric, 
  
 Have you tried using the MapPath Function?   This function will return the real path on the server where your application currently resides.  For a code example to see how this works check out the "DrawAPointUsingABitmap" sample under the Styles section of the How Do I sample apps. 
  
 Thanks!

Hi,


If the images are application specific, you can also include the images in your project (e.g. in a sub folder), and reference them (using the MapPath function) with the notation "~/path/file" ("~" being the project root folder).


Cheers.


 



Lars,


 Thank you for sharing that information.