Hello
I have one table in my page having two TD. Width of 1st TD is 25% and contains a List box.Crystal Report Viewer is there in the second TD.
Consider that I have bind data with CR. Now when I run the page Crystal Report covers whole page. I cannot able to view List view.
From Crystal report when I change its percentage to < 100% then List box is visible.
But its width should be 100% and List box should also be visible.
How Can I achieve this ?
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="25%">
<asp:ListBox runat="server" Width="100%">
<asp:ListItem Text="Report 1" />
<asp:ListItem Text="Report 2" />
</asp:ListBox>
</td>
<td>
<CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true" />
</tr>
</table>