Just a heads up, I answered this on the Telerik Reporting Forums, but I also wanted to share this here with the rest of the community as well. The issue appears to derive from the machine that has Telerik Reporting installed.
Some Telerik Reporting users have reported that Windows Server variants do not include the Microsoft.mshtml in the Global Assembly Cache (GAC). To resolve this, I recommend installing the Microsoft.mshtml
assembly in the GAC using gacutil
.
To do this, use the Developer Command Prompt for VS and perform the following steps.
- Download the Microsoft.mshtml assembly and save it to the Downloads folder.
- Change directory to the Downloads folder in the Developer Command Prompt:
cd %USERPROFILE%\Downloads
- Install the assembly in the GAC:
gacutil /i microsoft.mshtml
- Verify that it has been installed:
gacutil /l microsoft.mshtml