Hi, i'm trying to display a remote report inside a ReportViewer control using ASP.NET in VS2010.
The ReportViewer in my aspx page only shows the filter fields. So it only displays the top toolbar with a few textfields.
When i enter some values in there and when i press "View Report" then it doesn't show my report. A request is made, but my report doesn't appear underneath the filter toolbar.
I also tried to see if any JS errors popped up or something in the web browser console. But no errors are displayed.
I do see that two requests are made when i hit the "View Report" button. But these go to localhost. Is that supposed to happen? I can't think of any other reason why the report isn't showing up...
vivendi
0 Points
1 Post
Report partially showing
Jan 21, 2013 11:22 AM|LINK
Hi, i'm trying to display a remote report inside a ReportViewer control using ASP.NET in VS2010.
The ReportViewer in my aspx page only shows the filter fields. So it only displays the top toolbar with a few textfields.
When i enter some values in there and when i press "View Report" then it doesn't show my report. A request is made, but my report doesn't appear underneath the filter toolbar.
I also tried to see if any JS errors popped up or something in the web browser console. But no errors are displayed.
I do see that two requests are made when i hit the "View Report" button. But these go to localhost. Is that supposed to happen? I can't think of any other reason why the report isn't showing up...
Anyone any idea what the problem could be...?
This is the code i have in my aspx file:
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent"> <h2>Report</h2> <div> <form runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" Font-Size="8pt" Height="642px" InteractiveDeviceInfos="(Collection)" ProcessingMode="Remote" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt" Width="896px" ViewStateMode="Disabled"> <ServerReport ReportPath="http://server.com/Product/Dashboards/Product_tool.rdl" ReportServerUrl="http://server.com/ReportServer" /> </rsweb:ReportViewer> </form> </div> </asp:Content>