--
Andrew
MCSA,MCDBA
I did try that as evidenced in this code:
<table id="rptViewer" runat=server align=center width="100%"
height="100%">
<tr>
<td>
<rsweb:ReportViewer ID="ReportViewer1" runat="server"
Font-Names="Verdana" Font-Size="8pt" Height="95%" ProcessingMode="Remote"
Width="95%" ShowCredentialPrompts="true">
<ServerReport
ReportPath="/chartingtest/horizontalreport_large"
ReportServerUrl="http://localhost/reportserver" />
</rsweb:ReportViewer>
</td>
</tr>
</table>
As you can see I am using SQL Reporting Services ReportViewer control. With
this configuration, nothing is rendered within the reportviewer when I run
the application. From what I see, the ReportViewer is not accepting a
percenrtage width.
Any other ideas are greatly appreciated.
Is this a bug in the ReportViewer control? Is there a workaround or fix?
Mike
--
Rajeev Karunakaran [MSFT]
Microsoft SQL Server Reporting Services
This posting is provided "AS IS" with no warranties, and confers no rights.
"Michael R" <Mich...@discussions.microsoft.com> wrote in message
news:B9AE8223-6164-4B8A...@microsoft.com...
<body
onresize="javascript:document.getElementById('ReportViewer1').style.height =
document.documentElement.clientHeight - 100;">
hope this helps. Enjoy!
Mike Rainey
I too had the same issue, but was able to fix it by deleting the above
code in my aspx page that hosted the reportviewer control.