I have the LL18 viewer OCX on an ASP.NET web page like so:
<combit:ListLabelWebViewer ID=“ReportViewerControl” …
In the page’s code behind, I can set the codebase as follows:
ReportViewerControl.CabFileURL = ResolveUrl(“~/ocx/cmll18v.ocx”);
ReportViewerControl.CabFileVersion = “18,2,0,0”;
On another page, I have the designer control. The designer control only lets me set the CabFileURL property, it does not have a CabFileVersion property like the viewer control does. Is this anything I need to be concerned about, not being able to explicitly set the version number? Do I even have to bother setting the viewer control’s version number (I got the code for that from one of the LL samples)?
Mostly just wondering why one control has a version property and the other one doesn’t.
Thanks.