I use Report Viewer in visual studio 2010. I have 2 problems: 1. I can't center the table , it's align automatically to left. 2. I want to align the data into the table to right. how can I do that?
Thank you. (this is my code for Report Viewer:)
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<div >
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana"
Font-Size="8pt" InteractiveDeviceInfos="(Collection)"
WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt" Height="800px" Width="100%" RightToLeft="YES">
<LocalReport ReportPath="Report3.rdlc" >
<DataSources>
<rsweb:ReportDataSource DataSourceId="ObjectDataSource1" Name="DataSet1" />
</DataSources>
</LocalReport>
</rsweb:ReportViewer>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server"
SelectMethod="GetData"
TypeName="Shemen.ta2014DataSetTableAdapters.SoftwareTableAdapter">
</asp:ObjectDataSource>
</div>