I think I know what the problem is. It looks like the Crystal Reports component registration has not been updated in the markup. This is the current markup:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ReportEB.aspx.cs" Inherits="ReportEB" %>
<%@ Register assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" tagprefix="CR" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Intranet Reports - eBusiness</title>
</head>
<body>
<form id="form1" runat="server">
<CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true" />
</form>
</body>
</html>
What is the Version for CR2008 SP6? Is it just a matter of changing 12.0 to 12.6? I'm suprised the website didn't throw an exception, since 12.0 is not on the server.
Gary.