Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
smithygreg
Starting Member
37 Posts |
Posted - 2008-09-17 : 19:17:03
|
Hi..I have a reportviewer control on an ASP.NET page and it breaks the data into two pages after 50 rows and I have to use the PageNavigation buttons to see the rest of the data. I want it to show all 60 or 70 rows on the same page. How do I do this?ThanksGreg |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-09-18 : 12:45:11
|
Are you asking about standard report viewer? look for a property called interactiveheight and set it to 0 if you want all data in single page |
|
|
smithygreg
Starting Member
37 Posts |
Posted - 2008-09-18 : 18:37:43
|
I can't seem to find that property..I am using a Microsoft.Reporting.WebForms.ReportViewer.The report is Local report loaded through a .rdlc file. |
|
|
smithygreg
Starting Member
37 Posts |
Posted - 2008-09-18 : 18:48:43
|
OK..So I found the InteractiveHeight property in the RDLC file and I changed that to 0, but it tells me that '0' is not a valid size.A temporary fix for me has been to set the InteractiveHeight to 12in as I only needed a few more rows, but this is obviously not the best solution..Would there be something wrong with setting the IH to 100 or so? |
|
|
|
|
|