Quick background to answer your question:
I'm using Crystal Reports XI and Crystal Reports Server standalone and one of the apps is 'Publishing Wizard'. I go through the wizard and it asks what files I would like to publish. Among the types are PDF, XLS, CSV, etc. but not RPT. I choose *.* and select the report I made. I choose BINARY as the file type when it asks and get to the last step when it barks about a license which I believe is a file-type limitation Crystal Reports puts on it's licenses. Weird. On to .NET:
I tried Visual Studio 2005 with all of the bells and whistles like included Crystal Reports templates and wizards. I make a Crystal Reports Web Application which will run on the standalone test server VS offers but when I copy the files over to my Win2003 server I get more unforeseen failures than my future kids might be.
Now the debugger says:
"
Server Error in '/' Application." then proceeds to pick apart my ASPX file that VS made line by line.
Sorry for the long post, but this is the page VS made (short and sweet):
<%@ page language="VB" autoeventwireup="false" inherits="_Default, App_Web_0lkswkcq" %>
<%@ Register TagPrefix="CR" Namespace="CrystalDecisions.Web" Assembly="CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" %>
<head runat="server">
<form id="form1" runat="server">
<div><CR:CrystalReportViewer ID="CrystalReportViewer1" Runat="server" AutoDataBind="True" Height="947px" ReportSourceID="CrystalReportSource1" Width="845px" />
<CR:CrystalReportSource ID="CrystalReportSource1" runat="server">
<Report FileName="CrystalReport1.rpt"></Report>
</CR:CrystalReportSource> </div>
Anybody have an idea? Thanks for your help
Edited by nfox - 18 Oct 2007 at 6:33am