Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Oracle Apex 5 Static Workspace Image file complete path vs relative path

Diganta01Nov 25 2016 — edited Nov 25 2016

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>

workspace.png

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.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 23 2016
Added on Nov 25 2016
1 comment
1,239 views