I am trying to follow through Chapter 4 of the first edition with VS.NET 2003.
The sales_graph.rpt looks great in preview, but when run the line which begins with <CR:CrystalReportViewer reports an error "Comma expected" The html code follows, I hope it is readable in this forum. Does anyone know how to fix this?
<%@ Page Language="
vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.
vb" Inherits="WebApplication12.WebForm1"%>
<%@ Register TagPrefix="cr" Namespace="CrystalDecisions.Web" Assembly="CrystalDecisions.Web, Version=9.1.5000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
<CR:CrystalReportViewer id="CrystalReportViewer1" style="Z-INDEX: 101; LEFT: 105px; POSITION: absolute; TOP: 152px"
runat="server" Width="1030px" Height="1091px" ReportSource="<%# F:/CrystalLessons/7744/Chapter04/web_viewer_basic/sales_graph.rpt %>">
</CR:CrystalReportViewer>
</form>
</body>
</HTML>