Hello:
Any help is appreciated with this error.
I do not get this error when I run the report on my local machine, but only when I deploy it to a different server (Win 2K8 R2).
I researched on the web and found that there is no support yet for MVC 3, but I was wondering whether anyone out there had the issue and found a solution.
Please let me know any specific information regarding the application that will help you answer.
Here is the code for my view:
==
<%
@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<BVReport>" %>
<%
@ Register Assembly="Telerik.ReportViewer.WebForms, Version=5.0.11.510, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"
Namespace="Telerik.ReportViewer.WebForms" TagPrefix="telerik" %>
<
script runat="server">
protected override void OnPreRender(EventArgs e)
{
rvReport.Report = ViewData.Model;
base.OnPreRender(e);
}
</
script>
<!
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<
html>
<head runat="server">
<title>BVReport</title>
<style type="text/css">
html#html, body#body, form#form1, div#content, center#center
{
border: 0px solid black;
padding: 0px;
margin: 0px;
height: 100%;
}
</
style>
</head>
<body>
<form id="Form1" runat="server">
<telerik:ReportViewer Width="100%" Height="100%" ID="rvReport" runat="server" />
</form>
</body>
</html>