You can't find it because there is none. The datagrid is just an HTML table on the page. You'll need to encase the datagrid inside of an object that supports scrolling... Try this:
<div style="overflow:auto;height:400px;">
<asp:datagrid...>
</div>
Peter
|