Hi All,
I wanted to display an image on my oracle apex application page along with some help text. I used below code in static content item of the page.
<table border="0" width="100%">
<tr>
<td align="center">'<img src="#WORKSPACE_IMAGES#quizlogo.jpg" width="75px;" height="75px;"/>'</td>
</tr>
</table>

But using the path shown in the image the picture is not visible on the page. When I try to use the complete path (right click image and then copy image address) it shows me the picture. The code use is like this:
<table border="0" width="100%">
<tr>
<td align="center">'<img src=http://conjunct.am.lilly.com:8080/ords/apex_util.get_blob_file?a=4000&s=904408002442&p=315&d=26497724334968748&i=26495226551968741&p_pk1=3406811795543606&p_pk2=5201630274038404&p_ck=ITNXvmiw-YripsD8CEYvWYh8f25sWl7HLo1pLZ-aXrrtpj9idgYqi9nxBof_rHb3IpxpAkgqKvtAspsydw_q3A&p_content_disposition=attachment/quizlogo.jpg" width="75px;" height="75px;"/>'</td>
</tr>
</table>
But I cannot use the above method as it uses the session value which will change in next session. So I need help to find either the complete path of the image file without session value or the relative path of the image. Thanks for any feedback in advance.