ReportViewer Does not display

S

SimeonArgus

I have a reportViewer object looking at a remote report. The good news
is that I can press the PDF or Print button, and the report coems out
just fine. I can also go to the report URL directly, and it works just
fine. However, with the report viewer on my page, I cannot see
anything.

The report viewer has no specific settings other than the items listed
below:

<rsweb:ReportViewer ID="ReportViewer1" runat="server"
Height="90%" Width="94%" Font-Names="Verdana" Font-Size="8pt"
ShowBackButton="True" SizeToReportContent="True"
ProcessingMode="Remote">
<ServerReport ReportPath="/R2D2/Report1"
ReportServerUrl="http://MyMachine/R" />
</rsweb:ReportViewer>

What am I missing?
 
S

SimeonArgus

SimeonArgus said:
I have a reportViewer object looking at a remote report. The good news
is that I can press the PDF or Print button, and the report coems out
just fine. I can also go to the report URL directly, and it works just
fine. However, with the report viewer on my page, I cannot see
anything.

The report viewer has no specific settings other than the items listed
below:

<rsweb:ReportViewer ID="ReportViewer1" runat="server"
Height="90%" Width="94%" Font-Names="Verdana" Font-Size="8pt"
ShowBackButton="True" SizeToReportContent="True"
ProcessingMode="Remote">
<ServerReport ReportPath="/R2D2/Report1"
ReportServerUrl="http://MyMachine/R" />
</rsweb:ReportViewer>

What am I missing?

Side Note: The reportViewer header (the bar at the top with the PDF,
PRint, and next/prev buttons) displays the appropriate number of pages.
There's just nothing visible on the page.
 
S

SimeonArgus

SimeonArgus said:
Side Note: The reportViewer header (the bar at the top with the PDF,
PRint, and next/prev buttons) displays the appropriate number of pages.
There's just nothing visible on the page.

More info : I added code to try to force the object to display. Still
nothing. :

public partial class ReportFrame : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
ReportViewer1.ServerReport.Refresh();
}
}

Again, what am I missing? Is there more code or other settings I should
be using?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top