desktophero
Programmer
Here is the code:
function RefreshOpener(whatPage){
window.opener.location.href = whatPage;
}
An anchor tag is kicking off this event with the onClick event.
onClick="javascript: RefreshOpener('datapage.asp');"
I have found an article on Microsoft regarding this issue, however their solution of installing SP1 for IE6 has already been installed on my computer.
This fix calls is for MSHTML.dll files with a version less than 6.00.2713.700.
The version of this file on my PC is 6.0.2800.1106.
When I click on the link, I get an error stating that the 'Class doesn't support automation'.
This code works on ID v4.x - 5.5 SP2.
Any ideas?
Thanks!
Jason
function RefreshOpener(whatPage){
window.opener.location.href = whatPage;
}
An anchor tag is kicking off this event with the onClick event.
onClick="javascript: RefreshOpener('datapage.asp');"
I have found an article on Microsoft regarding this issue, however their solution of installing SP1 for IE6 has already been installed on my computer.
This fix calls is for MSHTML.dll files with a version less than 6.00.2713.700.
The version of this file on my PC is 6.0.2800.1106.
When I click on the link, I get an error stating that the 'Class doesn't support automation'.
This code works on ID v4.x - 5.5 SP2.
Any ideas?
Thanks!
Jason