Hi,
I am not sure why you set OutputArea to be bigger than page size. When you do that the contents will certainly be cut off.
As to scrollbars, when you view a web page in a browser, there are two types of scroll bars: scroll bars on the browser window and scroll bars on an element. The later can be triggered by something like this:
Code: HTML/ASPX
<div style="width:100px;height:100px;overflow:auto;">
<div style="width:200px;height:200px;">
</div>
</div>
We will not display the scroll bars on the browser window. However we will display scrollbars on HTML elements faithfully as is. If you want to remove those scrollbars, you have to modify your HTML. Note that sometimes even if your HTML does not display scrollbars in one browser, it may display scrollbars in another browser. Our rendering is most close to Google Chrome. So you can use Chrome to verify the output first.
Hope this helps. Please let us know if you have any more questions.
Thanks!