|
Hello. This is my first attempt at creating an application, so I'm having trouble finding answers, probably due to poor vocabulary. My application is a simple SQL database interface form to my product database, which is working great. Now, I would like to be able to show a photo of each product in the form as users access a record. Unfortunately the photo is not in my SQL database, but on my webserver, so I need to set the ImageLocation of my PictureBox to a path that includes the ProductID as the image name. So, for a product 1234, my images url is "http://mywebsite.com/images/1234 .jpg". I am trying to concatenate http://mywebsite.com/images/ + ProductID + .jpg in various ways, but having no luck. Is there a way to do this? I appreciate any help.
|