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!

Avoid escape special characters

XandotJun 2 2017 — edited Jun 2 2017

Hello,

Facing issue while redirecting text values from one page to another like:

Page 1:

pastedImage_0.png

Page 2:

pastedImage_2.png

when I like to empno then it'll transfer ename to the next page on ename field but problem is its only showing "J & a".

after comma text is not copied to the next page, so how to handle this kind on the issue related to special char?

I'm using below code URL code for redirect page:

HTML Header:

<script language="JavaScript" type="text/javascript">

function callMyPopup (ENAME,EMPNO) {

var url;

  url = 'f?p=&APP\_ID.:11:&APP\_SESSION.::::P11\_ENAME,P11\_EMPNO:'+ escape(ENAME) +',' + EMPNO;

w = open(url,"winLov","Scrollbars=1,resizable=1,width=925,height=400");

}

</script>

pastedImage_5.png

Thanks

This post has been answered by fac586 on Jun 2 2017
Jump to Answer

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jun 30 2017
Added on Jun 2 2017
2 comments
452 views