Question about WebImageView.URL

When using WebImageView.URL in a “build stand-alone” environment does the browser load the image directly from the URL or does the stand-alone server download the image and then serve it to the browser?

Bart

The browser loads the image from whatever server. If you have static images you can serve from an Apache server, either on your server or somewhere else, you may greatly improve performance of your app, as it’s not handling those requests.

Thanks Brad. That’s what I was hoping for.