J
JAG
The following line of code worked in my .hta prior to installing
MS08-045 - Cumulative Security Update for Internet Explorer (953838)
(on both XP and W2K):
window.top.frames['viewer'].location = [currentDoc];
After installing the above update on both XP and W2K, I had to change
the above line to the following to get the same result:
window.top.frames['viewer'].location = ["viewer.html"];
I did a little research on the MS site but failed to get specifics on
what "Cumulative" really means.
Does anyone know what was "fixed" in IE, and/or why I had to
explicitly specify the frame location?
Thanks in advance.
MS08-045 - Cumulative Security Update for Internet Explorer (953838)
(on both XP and W2K):
window.top.frames['viewer'].location = [currentDoc];
After installing the above update on both XP and W2K, I had to change
the above line to the following to get the same result:
window.top.frames['viewer'].location = ["viewer.html"];
I did a little research on the MS site but failed to get specifics on
what "Cumulative" really means.
Does anyone know what was "fixed" in IE, and/or why I had to
explicitly specify the frame location?
Thanks in advance.