One of my PHP applcations is calling JSP method as shown below : var reportWindow = window.open('DisplayView.aspx?viewId=' + viewId, '_blank', "height=700,width=900,left=20,top=20,scrollbars=auto,status=no,resizable=yes,toolbar=no,menubar=no,location=no"); where viewID has values as below :
- BANK\132ID
- BANK\122ID
- BANK\INT2616
We found that outcome of the JSPX is rendering viewID parameter in octal node values such as
- BANK\132ID is converted to BANKZID
- BANK\122ID is converted to BANKRID
- BANK\IN2616 is converted to BANKINT2616 where only "" is dropped.
I feel there must be some way to prevent this conversion in JSPX and return the viewID value as is. Any help is appreciated, thanks !