I ended up finding the double-references (two both versions of Stimulsoft) in the header of the aspx source, i.e.
Code: Select all
<%@ Register assembly="Stimulsoft.Report.Web, Version=2012.2.1400.0, Culture=neutral, PublicKeyToken=ebe6666cba19647a" namespace="Stimulsoft.Report.Web" tagprefix="cc1" %>
<%@ Register assembly="Stimulsoft.Report.Web, Version=2012.3.1500.0, Culture=neutral, PublicKeyToken=ebe6666cba19647a" namespace="Stimulsoft.Report.Web" tagprefix="cc2" %>
I had removed the project's old references to Stimulsoft.Base, Stimulsoft.Report, and Stimulsoft.Report.Web (via the References folder in the Solution Explorer) and created new references to the newer version of the components. Then I removed the old StiWebViewer component from the design editor and added a new one from the toolbox. But the old assembly reference remained in the Source view above. I removed the older reference and everything worked fine.
Before finding the above, I had looked up where to find and how to use the gacutil.exe utility, and had removed the older DLLs from the GAC, but was still seeing the issue -- pretty sure now that this step was unnecessary. I had also removed the older assembly reference in the Web.config file as well, but was running into the earlier issue until I also removed the older reference in the .aspx file. Hope this is useful to someone else that is upgrading versions or replacing the Trial version with the Full version...