I'm trying to create a form with a databound datagrid of fixed width and height. The problem is the datagrid always sizes itself verticcaly to the number of rows it's bound to.<BR><BR>I want it to be 150px tall. If 5 rows fit in there, fine. But if I bind it and 10 rows are needed, then I want scrollbars to appear but the height to remain 150px. (I don't want to use paging for this site!). <BR><BR>Anyway, I found nothing on the datagrid itself to accomplish this so have tried to place it within another control such as a Panel or Gridlayout. Still no luck. <BR><BR>Anyone have any ideas how this can be accomplished?<BR><BR>Thanks!!<BR><BR>You could try wrapping the dataGrid with:<BR><BR><IFRAME STYLE="height:150px; width:100%;"><BR><!-- datagrid here --><BR></IFRAME><BR><BR>But it would be IE4+ only.