I have some problems if the HTML-Page contains JavaScript with unescape.
OEE works correctly if the argument of unescape consists a "%" in front of each HEX-Code. But if there is a "\x" in front of each HEX-Code OEE can not decode it.
For Example:
--------------------
<html>
<body>
File: pic_1.jpg
<br>
<img src="pic_1.jpg">
<br>
File: pic_2.jpg
<br>
<script language="JavaScript">document.write(unescape("%3C%69%6D%67%20%73%72%63%3D%22%70%69%63%5F%32%2E%6A%70%67%22%3E"))</script>
<br>
File: pic_3.jpg
<br>
<script language="JavaScript">document.write(unescape("\x3C\x69\x6D\x67\x20\x73\x72\x63\x3D\x22\x70\x69\x63\x5F\x33\x2E\x6A\x70\x67\x22\x3E"))</script>
<br>
</body>
</html>
--------------------
In this Example the files "pic_1.jpg" and "pic_2.jpg" were downloaded correctly.
But "pic_3.jpg" wasn't downloaded.
Firefox shows all three pictures.
Am I doing something wrong?
I hope you can help me.
Ethan
Best regards,
Oleg Chernavin
MP Staff