ReportViewer control disabled

Discussion in 'ASP.NET / ASP.NET Core' started by zmmian, Nov 21, 2008.

  1. I am using the ReportViewer control and everything works as expected when I run it from my desktop. However, once I ftp the file over and run it from the server, the report is rendered (sort of) but the controls in the toolbarare all disabled. For example I can't move between pages, search or even export to pdf/Excel. The only enabled link on the toolbar is "Refresh". I did get a 'RSClientController' is undefined error message, followed by several others. I've tried this under both IEand Firefox. You can view this behavior at:
    http://financemkau.web703.discountasp.net/test/TestForm.aspx

    Again, it works as expected when I run it from my desktop.

    Here's markup for it:
    <rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana"
    Font-Size="8pt" Height="405px" Width="802px" AsyncRendering="False"
    ExportContentDisposition="AlwaysAttachment" ShowFindControls="False">
    <LocalReport ReportPath="Report3.rdlc" EnableExternalImages="True"
    EnableHyperlinks="True">
    <DataSources>
    <rsweb:ReportDataSource DataSourceId="ObjectDataSource1"
    Name="CommonListsDataSet_Branch" />
    </DataSources>
    </LocalReport>
    </rsweb:ReportViewer>
     

    Attached Files:

  2. The solution in this link fixed it. I don't know why I didn't see this post earlier.

    http://community.discountasp.net/default.aspx?f=33&m=27842

    It was adding the handler to the script.webserver section.

    <add name='Reserved-ReportViewerWebControl-axd' path='Reserved.ReportViewerWebControl.axd' verb='*' type='Microsoft.Reporting.WebForms.HttpHandler' resourceType='Unspecified' preCondition='integratedMode' />
     

Share This Page